annotate zpt/project/edit_publications.zpt @ 60:dc41deabc8f8

more work on projects. more cleanup.
author casties
date Thu, 02 May 2013 11:26:57 +0200
parents a6ace48c2bf2
children 04fb655633ef
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
22
5ed0b0c21fe5 started to clean up MPIWGProject.
casties
parents: 0
diff changeset
3 <html metal:use-macro="here/edit_template/macros/page">
0
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
4 <head>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
5 </head>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
6 <body>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
7 <tal:block metal:fill-slot="navsel" tal:define="global menusel string:publications" />
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
8 <tal:block metal:fill-slot="body">
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
9 <table>
60
dc41deabc8f8 more work on projects. more cleanup.
casties
parents: 56
diff changeset
10 <tal:block tal:repeat="publication here/getRelatedPublications">
0
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
11 <tr>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
12 <td>
60
dc41deabc8f8 more work on projects. more cleanup.
casties
parents: 56
diff changeset
13 <a tal:attributes="href python:here.absolute_url()+'/managePublications?pubName='+publication.getId()+'&op=up'">up</a><br>
dc41deabc8f8 more work on projects. more cleanup.
casties
parents: 56
diff changeset
14 <a tal:attributes="href python:here.absolute_url()+'/managePublications?pubName='+publication.getId()+'&op=down'">down</a>
0
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
15 </td>
60
dc41deabc8f8 more work on projects. more cleanup.
casties
parents: 56
diff changeset
16 <td tal:content="string:[${publication/place}]"/>
dc41deabc8f8 more work on projects. more cleanup.
casties
parents: 56
diff changeset
17 <td tal:content="structure python:getattr(publication,'text','')" />
0
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
18 <td>
60
dc41deabc8f8 more work on projects. more cleanup.
casties
parents: 56
diff changeset
19 <a tal:attributes="href python:publication.getId()+'/editPublication'">Edit</a><br/>
dc41deabc8f8 more work on projects. more cleanup.
casties
parents: 56
diff changeset
20 <a tal:attributes="href python:'deletePublication?id='+publication.getId()">Delete</a>
0
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
21 </td>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
22 </tr>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
23 </tal:block>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
24 </table>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
25
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
26 <h3>Add a publication</h3>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
27 <form action="addPublication" method="post">
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
28 <textarea name="text" rows="3" cols="80"></textarea>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
29 <p><input type="submit" value="submit"/></p>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
30 </form>
56
a6ace48c2bf2 publication management f?r projekte
dwinter
parents: 22
diff changeset
31 <!-- <p>(If the publications from your current project description are not showing in this list, click <a href="copyPublicationsToList">here</a> to copy them.)</p>
a6ace48c2bf2 publication management f?r projekte
dwinter
parents: 22
diff changeset
32
0
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
33 <h3><tal:x condition="python:here.hasExtendedPublicationList()">
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
34 <a href="publicationList/editEntries">
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
35 Manage Extended Publication List</a>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
36 </tal:x>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
37 <tal:x condition="not:python:here.hasExtendedPublicationList()">
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
38 <a href="createExtendedPublicationList">
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
39 Create Extended Publication List</a>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
40 </tal:x>
56
a6ace48c2bf2 publication management f?r projekte
dwinter
parents: 22
diff changeset
41 </h3>-->
a6ace48c2bf2 publication management f?r projekte
dwinter
parents: 22
diff changeset
42
60
dc41deabc8f8 more work on projects. more cleanup.
casties
parents: 56
diff changeset
43 <h3><a href="addPublicationsFromPubman"> Add publication to extended list</a></h3>
dc41deabc8f8 more work on projects. more cleanup.
casties
parents: 56
diff changeset
44 <h3><a href="changePublications"> Change publication list</a></h3>
0
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
45 </tal:block>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
46 </body>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
47 </html>