Code

*** empty log message ***
[roundup.git] / roundup / templates / classic / html / _generic.item
1 <form method="POST" onSubmit="return submit_once()"
2       enctype="multipart/form-data">
4 <input type="hidden" name=":template" value="item">
5 <input type="hidden" name=":required" value="title">
7 <table class="form">
9 <tr tal:repeat="prop python:db[context._classname].properties()">
10  <tal:block tal:condition="python:prop._name not in ('id', 'creator',
11                                   'creation', 'activity')">
12   <th tal:content="prop/_name"></th>
13   <td tal:content="structure python:context[prop._name].field()"></td>
14  </tal:block>
15 </tr>
16 <tr>
17  <td>&nbsp;</td>
18  <td colspan=3 tal:content="structure context/submit">
19   submit button will go here
20  </td>
21 </tr>
22 </table>
25 <tal:block tal:condition="context/id">
26  <tal:block tal:replace="structure context/history" />
27 </tal:block>
29 </form>