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 <div>
|
|
9 <form action="" method="post">
|
|
10 <table>
|
|
11 <input type="hidden" method="change" />
|
|
12 <tr tal:repeat="entry python:here.getAdditionalPublicationList()">
|
|
13 <td><input type="checkbox" value="delete" tal:attributes="name python:entry.escidocid" /></td>
|
|
14 <td><input type="text" size="5" tal:attributes="name python:entry.escidocid+'__p'; value python:entry.priority" /></td>
|
|
15 <td><tal:x tal:replace="structure python:here.mpiwgPubman.getEntryFromPubman(entry.escidocid)" /></td>
|
|
16 </tr>
|
|
17 </table>
|
|
18 <input type="submit" value="submit" />
|
|
19 </form>
|
|
20 </div>
|
|
21 </tal:block>
|
56
|
22 </body>
|
|
23 </html>
|