]> git.0d.be Git - panikweb.git/blob - panikweb_templates/templates/grid.html
remove news block in grid page
[panikweb.git] / panikweb_templates / templates / grid.html
1 {% extends "base.html" %}
2
3 {% block content %}
4
5 <h2>Grille</h2>
6
7 <table border=1>
8 {% for time_cells in grid %}
9 <tr>
10   <td>ti:me</td>
11   {% for cell in time_cells %}
12   <td {% if cell.w > 1 %}colspan="{{cell.w}}"{% endif %}
13       {% if cell.h > 1 %}rowspan="{{cell.h}}"{% endif %}>{{ cell }}</td>
14   {% endfor %}
15   <td>ti:me</td>
16 </tr>
17 {% endfor %}
18 </table>
19
20
21 {% endblock %}
22
23 {% block news %}
24 {% endblock %}