comparison zpt/staff/pubman/change_publications.zpt @ 147:6ae0201b1257

bug in edit publications. behoben
author dwinter
date Mon, 03 Jun 2013 08:24:14 +0200
parents 225179dfd892
children 485bf377913a
comparison
equal deleted inserted replaced
146:fc2480e1f30f 147:6ae0201b1257
10 <div> 10 <div>
11 <form action="" method="post"> 11 <form action="" method="post">
12 12
13 <table> 13 <table>
14 14
15 <input type="hidden" method="change"/> 15 <input type="hidden" value="change" name="method"/>
16
17 <tr>
18 <td>Delete</td><td>Priority</td><td>Citation</td>
19 </tr>
16 <tr tal:repeat="entry python:here.getSelectedPublications()"> 20 <tr tal:repeat="entry python:here.getSelectedPublications()">
17 <td><input type="checkbox" value="delete" tal:attributes="name python:entry.escidocid"/></td> 21 <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> 22 <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> 23 <td><tal:x tal:replace="structure python:here.mpiwgPubman.getEntryFromPubman(entry.escidocid)"/></td>
20 </tr> 24 </tr>
21 25
22 </table> 26 </table>
23 <input type="submit" value="submit"/> 27 <input type="submit" value="submit"/> <b>This will delete all selected entries and change the priorities!</b>
24 28
25 </form> 29 </form>
26 30
27 </div> 31 </div>
28 </tal:block> 32 </tal:block>