new build_form_elements attribute for Maypole request, set it to 0 to avoid building cgi form if you don't need it
made DFV and FromCGI warn instead of die on unexpected cgi params
added CGI params to TT error template
+ small improvements to some factory templates
2.11 Mon 31 July 2006
<form method="get" action="[% base %]/[% classmetadata.moniker %]/search/">
<fieldset>
<legend>Search</legend>
- [% FOR col = classmetadata.columns;
- NEXT IF col == "id" OR col == classmetadata.table _ "_id";
- %]
+ [% FOR col = classmetadata.search_columns %]
<label>
<span class="field">[% classmetadata.colnames.$col; %]</span>
[% SET element = classmetadata.cgi.$col;