Mercurial > hg > MPIWGWeb
annotate zpt/feature/manage_config.zpt @ 16:54f135c1ed65
updated MPIWGFeature.
zpts moved to feature subfolder and renamed.
new date attribute.
nicer management interface.
author | casties |
---|---|
date | Fri, 05 Apr 2013 15:58:43 +0200 |
parents | zpt/MPIWGFeatureConfig.zpt@bca61e893fcc |
children | c7e6664d60c9 |
rev | line source |
---|---|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1 <html> |
16 | 2 <div tal:replace="structure here/manage_page_header">Header</div> |
3 <!-- ZOPE management tabs --> | |
4 <h2 tal:define="manage_tabs_message options/manage_tabs_message | nothing" tal:replace="structure here/manage_tabs">Tabs</h2> | |
5 <!-- end of ZOPE management tabs --> | |
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
6 <h2>Change MPIWG Feature</h2> |
16 | 7 <form action="changeMPIWGFeature" method="post"> |
8 <table> | |
9 <tr> | |
10 <td><i>Internal title</i> (for management, in English)</td> | |
11 <td><input type="text" size="50" name="title" tal:attributes="value here/title|nothing"></td> | |
12 </tr> | |
13 <tr> | |
14 <td><i>Weight</i> (number for sorting)</td> | |
15 <td><input type="text" size="5" name="weight" tal:attributes="value here/weight|string:0"></td> | |
16 </tr> | |
17 <tr> | |
18 <td><i>Date</i> (ISO format, e.g. "2013-01-15")</td> | |
19 <td><input type="text" size="10" name="date" tal:attributes="value python:here.getDateString(lang='iso')"></td> | |
20 </tr> | |
21 <tr> | |
22 <td><i>Title in English</i> (e.g. "Science under Scrutiny")</td> | |
23 <td><input type="text" size="50" name="title_en" tal:attributes="value python:here.getFullTitle(lang='en')"></td> | |
24 </tr> | |
25 <tr> | |
26 <td><i>Title in German</i></td> | |
27 <td><input type="text" size="50" name="title_de" tal:attributes="value python:here.getFullTitle(lang='de')"></td> | |
28 </tr> | |
29 </table> | |
30 <input type="submit"> | |
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
31 </form> |
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
32 </html> |