Mercurial > hg > MPIWGWeb
comparison zpt/staff/pubman/change_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 | 6ae0201b1257 |
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 | |
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> |