annotate zpt/project/edit_related_projects.zpt @ 165:2662a043391d

style for jump_top
author casties
date Thu, 06 Jun 2013 19:59:41 +0200
parents 04fb655633ef
children 2da62e93a1c6
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">
60
dc41deabc8f8 more work on projects. more cleanup.
casties
parents: 52
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:relatedProjects" />
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>
61
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
10 <tal:block tal:repeat="item here/getRelatedProjectList">
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
11 <tr tal:define="proid item/getId">
0
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
12 <td>
61
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
13 <a tal:attributes="href string:$root/manageRelatedProjects?name=$proid&op=up">up</a><br>
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
14 <a tal:attributes="href string:$root/manageRelatedProjects?name=$proid&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: 52
diff changeset
16 <td tal:content="string:[${item/place}]"/>
dc41deabc8f8 more work on projects. more cleanup.
casties
parents: 52
diff changeset
17 <!-- <td tal:content="item/objid" /> -->
dc41deabc8f8 more work on projects. more cleanup.
casties
parents: 52
diff changeset
18 <td tal:content="item/getProjectTitle" />
0
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
19 <td>
61
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
20 <a tal:attributes="href string:$root/$proid/editRelatedProject">Edit</a><br/>
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
21 <a tal:attributes="href string:$root/deleteRelatedProject?id=$proid">Delete</a>
0
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
22 </td>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
23 </tr>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
24 </tal:block>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
25 </table>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
26
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
27 <h3>Add related projects</h3>
61
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
28 <form tal:attributes="action string:$root/addRelatedProject" method="post">
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
29 <p>
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
30 Please enter the URL of the project you want to add a relation to:<br />
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
31 <input name="link" size="100">
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
32 </p>
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
33 <p>
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
34 <input type="submit" value="submit" />
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
35 </p>
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
36 </form>
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
37
04fb655633ef more cleaning up projects.
casties
parents: 60
diff changeset
38 </tal:block>
0
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
39 </body>
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
40 </html>