comparison zpt/staff/pubman/add_publications.zpt @ 47:225179dfd892

getPublications erweitert nach Typ ausserdem erh?lt man jetzt auch einzelne Publicationen nach escidoc:id
author dwinter
date Mon, 29 Apr 2013 16:01:24 +0200
parents
children 33c663a08025
comparison
equal deleted inserted replaced
46:955d102392db 47:225179dfd892
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/mainEditFile/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>