home · contact · privacy
In Calendar view, highlight today's date.
[plomtask] / templates / condition.html
1 {% extends 'base.html' %}
2
3 {% block content %}
4 <h3>condition</h3>
5 <form action="condition?id={{condition.id_ or ''}}" method="POST">
6 title: <input name="title" value="{{condition.title.newest|e}}" />
7 description: <input name="description" value="{{condition.description.newest|e}}" />
8 is active: <input name="is_active" type="checkbox" {% if condition.is_active %}checked{% endif %} />
9
10 <input class="btn-harmless" type="submit" name="update" value="update" />
11 <div class="btn-to-right">
12 <input class="btn-dangerous" type="submit" name="delete" value="delete" />
13 </div>
14
15 {% endblock %}
16