Changeset 2939

Show
Ignore:
Timestamp:
02/21/07 18:07:39 (2 years ago)
Author:
mscott
Message:

some work on showing fields of exact match queries

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sandbox/mscott/SchevoPylonsNav/trunk/schevopylonsnav/templates/queries/show.html

    r2938 r2939  
    1414            <a href="${h.url_for('query', id=c.query_id)}">${h.label(c.query)}</a> 
    1515        </div> 
     16         
     17        <ul class="fields"> 
     18            % for name, field in c.query.sys.field_map().iteritems(): 
     19                <li><label for="f_${name}">${h.label(field)}</label> <span id="f_${name}" class="value">${field.value}</span></li> 
     20            % endfor 
     21        </ul> 
    1622    </body> 
    1723</html>