Mercurial > hg > MPIWGWeb
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 |
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 | 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 | 10 <tal:block tal:repeat="item here/getRelatedProjectList"> |
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 | 13 <a tal:attributes="href string:$root/manageRelatedProjects?name=$proid&op=up">up</a><br> |
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 | 16 <td tal:content="string:[${item/place}]"/> |
17 <!-- <td tal:content="item/objid" /> --> | |
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 | 20 <a tal:attributes="href string:$root/$proid/editRelatedProject">Edit</a><br/> |
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 | 28 <form tal:attributes="action string:$root/addRelatedProject" method="post"> |
29 <p> | |
30 Please enter the URL of the project you want to add a relation to:<br /> | |
31 <input name="link" size="100"> | |
32 </p> | |
33 <p> | |
34 <input type="submit" value="submit" /> | |
35 </p> | |
36 </form> | |
37 | |
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> |