Skip to content

Commit f7f6604

Browse files
author
Richard Jones
committed
cleaner implementation
1 parent 5070dfd commit f7f6604

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

roundup/templates/classic/html/keyword.item

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
<!-- dollarId: keyword.item,v 1.3 2002/05/22 00:32:34 richard Exp dollar-->
22

33
<table class="otherinfo">
4-
<tr><th colspan="4" class="header">Existing Keywords</th></tr>
5-
<tal:block tal:define="keywords db/keyword/list"
6-
tal:repeat="start python:range(0, len(keywords), 4)">
7-
<tr tal:define="batch python:utils.Batch('keyword', keywords, 4, start)">
8-
<td tal:repeat="keyword batch" tal:content="keyword/name">
9-
keyword goes here
10-
</td>
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('keyword', keywords, 4, start)"
8+
tal:repeat="keyword batch" tal:content="keyword/name">keyword here</td>
119
</tr>
12-
</tal:block>
13-
<tr><td colspan="4" style="border-top: 1px solid gray">&nbsp;</td></tr>
10+
<tr><td colspan="4" style="border-top: 1px solid gray">&nbsp;</td></tr>
1411
</table>
1512

1613
<p class="help" tal:condition="not:context/id">

0 commit comments

Comments
 (0)