annotate zpt/staff/pubman/change_publications.zpt @ 170:485bf377913a

fix staff editing pages.
author casties
date Fri, 07 Jun 2013 16:29:34 +0200
parents 6ae0201b1257
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
47
225179dfd892 getPublications erweitert nach Typ
dwinter
parents:
diff changeset
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
225179dfd892 getPublications erweitert nach Typ
dwinter
parents:
diff changeset
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
225179dfd892 getPublications erweitert nach Typ
dwinter
parents:
diff changeset
3 <html metal:use-macro="here/mainEditFile/macros/page">
225179dfd892 getPublications erweitert nach Typ
dwinter
parents:
diff changeset
4 <body>
170
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
5 <tal:block metal:fill-slot="navsel" tal:define="global menusel string:publications" />
147
6ae0201b1257 bug in edit publications. behoben
dwinter
parents: 47
diff changeset
6
170
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
7 <tal:block metal:fill-slot="body">
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
8 <div>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
9 <form action="" method="post">
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
10 <input type="hidden" value="change" name="method" />
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
11 <table>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
12 <tr>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
13 <th>Delete</th>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
14 <th>Priority</th>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
15 <th>Citation</th>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
16 </tr>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
17 <tr tal:repeat="entry python:here.getSelectedPublications()">
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
18 <td><input type="checkbox" value="delete" tal:attributes="name python:entry.escidocid" /></td>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
19 <td><input type="text" size="5" tal:attributes="name python:entry.escidocid+'__p'; value python:entry.priority" /></td>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
20 <td><tal:x tal:replace="structure python:here.mpiwgPubman.getEntryFromPubman(entry.escidocid)" /></td>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
21 </tr>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
22 </table>
47
225179dfd892 getPublications erweitert nach Typ
dwinter
parents:
diff changeset
23
170
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
24 <p>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
25 <input type="submit" value="submit" />
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
26 <b>This will delete all selected entries and change the priorities!</b>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
27 </p>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
28 <p>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
29 <a tal:attributes="href string:$root/editPublications">Back to publication list</a>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
30 </p>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
31 </form>
47
225179dfd892 getPublications erweitert nach Typ
dwinter
parents:
diff changeset
32
170
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
33 </div>
485bf377913a fix staff editing pages.
casties
parents: 147
diff changeset
34 </tal:block>
47
225179dfd892 getPublications erweitert nach Typ
dwinter
parents:
diff changeset
35 </body>
225179dfd892 getPublications erweitert nach Typ
dwinter
parents:
diff changeset
36 </html>