<%inherit file="/base/index.html" /> <%namespace file="/base/formViews.html" name="formViews" import="*"/> <%namespace file="/base/javascriptDefs.html" name="javascriptDefs" import="*"/> <%def name="heading()"> % if hasattr(c, 'browsing'):

Forms (${c.paginator.item_count})

% elif c.paginator.item_count == 1:

Form Results: ${c.paginator.item_count} match

% else:

Form Results: ${c.paginator.item_count} matches

% endif % if len(c.paginator):
remember all export all

${ c.paginator.pager('$link_first $link_previous $first_item to $last_item of $item_count $link_next $link_last') }

## NO LONGER NEED THE TOGGLE LABELS BUTTON BECAUSE FORMS ARE DISPLAYED ## DIFFERENTLY NOW. ##${javascriptDefs.toggleLabelsJavaScript()} ##- ##
% if session.get('defaultFormView') == 'tabular': <% counter=0 %>
% for form in c.paginator: ${h.literal(form.getHTMLRowRepresentation())} <% counter += 1 %> % endfor
id gr orthographic transcription narrow phonetic transcription broad phonetic transcription gloss(es) morpheme break morpheme gloss comments speaker comments syntactic category syntactic category string speaker source elicitor enterer verifier elicitation method keywords associated files collections referencing this form date elicited date & time entered date & time last modified
% else: <% counter=0 %> % for form in c.paginator: ${h.literal(form.getHTMLRepresentation(forCollection=False))}

<% counter += 1 %> % endfor % endif

${ c.paginator.pager('~2~') }

% endif