home · contact · privacy
88d1cc7244a32e91b7265c4f715af6a9161ebbe8
[plomtask] / templates / conditions.html
1 {% extends '_base.html' %}
2
3 {% block content %}
4 <h3>conditions</h3>
5
6 <table>
7 <tr>
8 <th>active</th>
9 <th>title</th>
10 </tr>
11 {% for condition in conditions %}
12 <tr>
13 <td>[{% if condition.is_active %}X{% else %} {% endif %}]</td>
14 <td><a href="condition?id={{condition.id_}}">{{condition.title.newest}}</a></td>
15 </tr>
16 {% endfor %}
17 </table>
18
19 <p>
20 <a href="condition">add</a>
21 </p>
22
23 {% endblock %}