<%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') }

${javascriptDefs.toggleLabelsJavaScript()} -
<% counter=0 %> % for form in c.paginator: ${formViews.formViewLong(form)} <% counter += 1 %> % endfor

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

% endif