Mercurial > p > roundup > code
diff roundup/templates/classic/html/issue.search @ 987:5643abab70ed
new classic template files
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 30 Aug 2002 08:30:12 +0000 |
| parents | |
| children | d9943245db26 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/roundup/templates/classic/html/issue.search Fri Aug 30 08:30:12 2002 +0000 @@ -0,0 +1,41 @@ + +<form method="GET" tal:attributes="action request/classname"> + +Columns you may display: +<tal:block + tal:repeat="n python:'id activity priority title status assignedto'.split()"> + <span tal:content="n">name</span> + <input type="checkbox" name=":columns" + tal:attributes="value n; + checked python:request.columns.has_key(n)"> +</tal:block> +<br> +Sort on: <input type="radio" name=":sort" tal:repeat="n request/sort" + tal:attributes="value n; + checked python:n in request.sort"> +<br> +Group on: +<input type="radio" name=":group" tal:repeat="n request/group" + tal:attributes="value n; + checked python:n in request.group"> +<br> +<input type="hidden" name=":action" value="searchform"> +<br> + +<tal:block tal:repeat="n python:request.filterspec.keys()"> + Filter: <input tal:repeat="v python:request.filterspec[n]" + tal:attributes="name n; value v"> +</tal:block> + +<br> +Pagesize: + <input type="text" name=":pagesize" size="3" value="50"> + +<br> +Start With: +<input type="text" name=":startwith" size="3" value="0"> + +<br> +<input type="submit" value="Search"> + +</form>
