comparison zpt/project/pubman/add_publications.zpt @ 56:a6ace48c2bf2

publication management f?r projekte
author dwinter
date Tue, 30 Apr 2013 18:35:08 +0200
parents
children 64be5db08495
comparison
equal deleted inserted replaced
55:12cb73494367 56:a6ace48c2bf2
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>
5 <tal:block metal:fill-slot="navsel" tal:define="global menusel string:talks" />
6
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> Author/Editor: <input type="text" size="30" name="author"/></div>
11 <div> Title: <input type="text" size="30" name="title"/></div>
12 <div> Somewhere in the metadata: <input type="text" size="30" name="any"/></div>
13
14 <input type="submit" value="submit">
15
16 </form>
17
18
19 <div tal:condition="python:options.has_key('values')">
20 <form action="" method="post">
21 <input type="hidden" name="method" value="add"/>
22
23 <table>
24
25
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
31 </table>
32 <input type="submit" value="submit"/>
33
34 </form>
35
36 </div>
37 </tal:block>
38 </body>
39 </html>