Code

cc73e88d35bb915206f8a5e8c681b42edd999bcf
[roundup.git] / roundup / templates / classic / html / keyword.item
1 <!-- dollarId: keyword.item,v 1.3 2002/05/22 00:32:34 richard Exp dollar-->
3 <table class="otherinfo">
4  <tr><th colspan="4" class="header">Existing Keywords</th></tr>
5  <tr tal:define="keywords db/keyword/list"
6      tal:repeat="start python:range(0, len(keywords), 4)">
7   <td tal:define="batch python:utils.Batch(keywords, 4, start)"
8       tal:repeat="keyword batch" tal:content="keyword/name">keyword here</td>
9  </tr>
10  <tr><td colspan="4" style="border-top: 1px solid gray">&nbsp;</td></tr>
11 </table>
13 <p class="help" tal:condition="not:context/id">
14  To create a new keyword, enter it below and click "Submit New Entry".
15 </p>
17 <form method="POST" onSubmit="return submit_once()"
18       enctype="multipart/form-data">
20  <input type="hidden" name=":required" value="name">
22  <table class="form">
23   <tr>
24    <th nowrap>Keyword</th>
25    <td tal:content="structure context/name/field">name</td>
26   </tr>
28   <tr>
29    <td>&nbsp;</td>
30    <td colspan=3 tal:content="structure context/submit">
31     submit button will go here
32    </td>
33   </tr>
34  </table>
35 </form>