56
|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
3 <html metal:use-macro="here/edit_template/macros/page">
|
|
4 <body>
|
62
|
5 <tal:block metal:fill-slot="navsel" tal:define="global menusel string:publications" />
|
56
|
6
|
62
|
7 <tal:block metal:fill-slot="body" tal:define="yes_no_list python:'yes\nno'">
|
|
8 <form action="" method="post">
|
|
9 <input type="hidden" name="method" value="search" />
|
|
10 <div>
|
|
11 Author/Editor: <input type="text" size="30" name="author" />
|
|
12 </div>
|
|
13 <div>
|
|
14 Title: <input type="text" size="30" name="title" />
|
|
15 </div>
|
|
16 <div>
|
|
17 Somewhere in the metadata: <input type="text" size="30" name="any" />
|
|
18 </div>
|
|
19 <input type="submit" value="submit">
|
|
20 </form>
|
56
|
21
|
62
|
22 <div tal:condition="python:options.has_key('values')">
|
|
23 <form action="" method="post">
|
|
24 <input type="hidden" name="method" value="add" />
|
|
25 <table>
|
|
26 <tr tal:repeat="entry python:options['values'].items()">
|
|
27 <td><input type="checkbox" value="add" tal:attributes="name python:entry[0]" /></td>
|
|
28 <td><tal:x tal:replace="structure python:entry[1]" /></td>
|
|
29 </tr>
|
|
30 </table>
|
|
31 <input type="submit" value="submit" />
|
|
32 </form>
|
|
33 </div>
|
|
34 </tal:block>
|
56
|
35 </body>
|
|
36 </html>
|