47
|
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
|
147
|
15 <input type="hidden" value="change" name="method"/>
|
|
16
|
|
17 <tr>
|
|
18 <td>Delete</td><td>Priority</td><td>Citation</td>
|
|
19 </tr>
|
47
|
20 <tr tal:repeat="entry python:here.getSelectedPublications()">
|
|
21 <td><input type="checkbox" value="delete" tal:attributes="name python:entry.escidocid"/></td>
|
|
22 <td><input type="text" size="5" tal:attributes="name python:entry.escidocid+'__p'; value python:entry.priority"/></td>
|
|
23 <td><tal:x tal:replace="structure python:here.mpiwgPubman.getEntryFromPubman(entry.escidocid)"/></td>
|
|
24 </tr>
|
|
25
|
|
26 </table>
|
147
|
27 <input type="submit" value="submit"/> <b>This will delete all selected entries and change the priorities!</b>
|
47
|
28
|
|
29 </form>
|
|
30
|
|
31 </div>
|
|
32 </tal:block>
|
|
33 </body>
|
|
34 </html>
|