File:  [Repository] / MPIWGWeb / zpt / edit_MPIWGBasis.zpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Wed Feb 4 10:03:33 2004 UTC (20 years, 4 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
Initial revision

<html>
<body>
<form method="POST" action="editMPIWGProject">
<h2>Basis Information</h2>
<table>
<tr>
<td>Project Title</td>
<td><input tal:attributes="name python:'WEB_title'; value python:here.getContent('WEB_title')" size=100/></td>
</tr>
<tal:block tal:repeat="field here/getDataFields">
<tr>
<td tal:content="field"/>
<td> <input tal:attributes="name field; value python:here.getContent(field)" size=100/></td>
</tr>
<tr tal:condition="python:here.isCheckField(field)">
<td colspan=2>
<tal:block  tal:define="checkList python:here.giveCheckList(here,field)">
<tal:block  repeat="item checkList/keys">
<span tal:replace="item"/>:
<input tal:repeat="prop python:checkList[item]" 
       type="radio" 
       tal:attributes="name python:'val_%s'%field; value python:prop[0].getId()" 
       tal:content="python:prop[1]"/>
</tal:block>
<br>
</tal:block>
</td>
</tr>
</tal:block>
</table>

  
<input type="submit">
</form>
</body>
</html>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>