ideabox page makes a grid for placeholder list
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
% rebase('frame.tpl')
|
||||
% import math
|
||||
|
||||
<!--Content-->
|
||||
<div class="content">
|
||||
<br><br>
|
||||
<br>
|
||||
<table>
|
||||
% for i in range(math.ceil(len(words) / limit)):
|
||||
<tr>
|
||||
% for j in range(limit):
|
||||
% if j + i * limit < len(words):
|
||||
<th>{{words[j + i * limit]}}</th>
|
||||
% end
|
||||
% end
|
||||
</tr>
|
||||
% end
|
||||
</table>
|
||||
<br>
|
||||
</div>
|
||||
<div class="footer-row"> </div>
|
||||
Reference in New Issue
Block a user