Mercurial > hg > MPIWGWeb
comparison zpt/project/pubman/change_publications.zpt @ 56:a6ace48c2bf2
publication management f?r projekte
author | dwinter |
---|---|
date | Tue, 30 Apr 2013 18:35:08 +0200 |
parents | |
children | 04fb655633ef |
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 | |
9 | |
10 <div> | |
11 <form action="" method="post"> | |
12 | |
13 <table> | |
14 | |
15 <input type="hidden" method="change"/> | |
16 <tr tal:repeat="entry python:here.getSelectedPublications()"> | |
17 <td><input type="checkbox" value="delete" tal:attributes="name python:entry.escidocid"/></td> | |
18 <td><input type="text" size="5" tal:attributes="name python:entry.escidocid+'__p'; value python:entry.priority"/></td> | |
19 <td><tal:x tal:replace="structure python:here.mpiwgPubman.getEntryFromPubman(entry.escidocid)"/></td> | |
20 </tr> | |
21 | |
22 </table> | |
23 <input type="submit" value="submit"/> | |
24 | |
25 </form> | |
26 | |
27 </div> | |
28 </tal:block> | |
29 </body> | |
30 </html> |