<%inherit file="/base/index.html" /> <%namespace file="/base/formViews.html" name="formViews" import="*"/> <%namespace file="/base/searchFields.html" name="searchFields" import="*"/> <%def name="heading()">
${searchFields.dictionarySearch()}
${h.submit(value="Search", name='submit', tabindex=30)}
% if hasattr(c, 'exactMatchList') and c.exactMatchList:

Exact Matches

% for form in c.exactMatchList: ${formViews.dictionaryView(form, c.languageToSortBy)} % endfor
% endif % if hasattr(c, 'fuzzyMatchList') and c.fuzzyMatchList:

Partial Matches

% for form in c.fuzzyMatchList: % if form not in c.exactMatchList: ${formViews.dictionaryView(form, c.languageToSortBy)} % endif % endfor
% endif