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>
|
170
|
5 <tal:block metal:fill-slot="navsel" tal:define="global menusel string:publications" />
|
147
|
6
|
170
|
7 <tal:block metal:fill-slot="body">
|
|
8 <div>
|
|
9 <form action="" method="post">
|
|
10 <input type="hidden" value="change" name="method" />
|
|
11 <table>
|
|
12 <tr>
|
|
13 <th>Delete</th>
|
|
14 <th>Priority</th>
|
|
15 <th>Citation</th>
|
|
16 </tr>
|
|
17 <tr tal:repeat="entry python:here.getSelectedPublications()">
|
|
18 <td><input type="checkbox" value="delete" tal:attributes="name python:entry.escidocid" /></td>
|
|
19 <td><input type="text" size="5" tal:attributes="name python:entry.escidocid+'__p'; value python:entry.priority" /></td>
|
|
20 <td><tal:x tal:replace="structure python:here.mpiwgPubman.getEntryFromPubman(entry.escidocid)" /></td>
|
|
21 </tr>
|
|
22 </table>
|
47
|
23
|
170
|
24 <p>
|
|
25 <input type="submit" value="submit" />
|
|
26 <b>This will delete all selected entries and change the priorities!</b>
|
|
27 </p>
|
|
28 <p>
|
|
29 <a tal:attributes="href string:$root/editPublications">Back to publication list</a>
|
|
30 </p>
|
|
31 </form>
|
47
|
32
|
170
|
33 </div>
|
|
34 </tal:block>
|
47
|
35 </body>
|
|
36 </html>
|