home · contact · privacy
Various small fixes.
[misc] / todo_templates / task.html
1 {% extends 'base.html' %}
2 {% block css %}
3 th, td { vertical-align: top; text-align: left}
4 td.input { width: 100%; }
5 td.checkbox { width: 0.1em; height: 0.1em; padding: 0em; text-align: center; }
6 input[type="number"] { text-align: right; }
7 input[type="text"] { width: 100% }
8 textarea { width: 100% };
9 {% endblock %}
10 {% block content %}
11 <form id="form_to_watch" action="task" method="POST">
12 <h3>edit task</h3>
13 <input type="hidden" name="id" value="{{ task.id_ }}" />
14 <input type="hidden" name="return_to" value="{{ return_to }}" />
15 <table>
16 <tr><th>title</th><td class="input"><input name="title" type="text" value="{{ task.title|e }}" /><details><summary>history</summary><ul>{% for k,v in task.title_history.items() | sort(attribute='0', reverse=True) %}<li>{{ k }}: {{ v|e }}{% endfor %}</ul></details></td></tr>
17 <tr><th></th><td><input type="checkbox" name="as_todo" {% if selected %}checked{% endif%}> selected for {{db.selected_date}}</td></tr>
18 <tr><th>comment</th><td class="input"><textarea name="comment">{{task.comment|e}}</textarea></td></tr>
19 <tr><th>default effort</th><td class="input"><input type="number" name="default_effort" value="{{ task.default_effort }}" step=0.1 size=8 required /><details><summary>history</summary><ul>{% for k,v in task.default_effort_history.items() | sort(attribute='0', reverse=True) %}<li>{{ k }}: {{ v|e }}{% endfor %}</ul></details></td></tr>
20 <tr><th>tags</th>
21 <td>
22 {% for tag in db.t_tags | sort %}
23 <input type="checkbox" name="tag_{{tag|e}}"{% if tag in task.tags %} checked{% endif %}/> {{ tag }}<br />
24 {% endfor %}
25 add: <input name="joined_tags" type="text" value="" ><br />
26 <details><summary>history</summary><ul>{% for k,v in task.tags_history.items() | sort(attribute='0', reverse=True) %}<li>{{ k }}: {{ v|e }}{% endfor %}</ul></details>
27 </td></tr>
28 <tr><th>children</th>
29 <td>
30 <table>
31 {% for subtask in linked_tasks %}
32 <tr>
33 <td><input name="link_task" type="checkbox" value="{{subtask.id_}}" checked/></td>
34 <td><a href="task?id={{subtask.id_}}">{{subtask.title}}</a></td>
35 </tr>
36 {% endfor %}
37 <tr>
38 <th colspan=2>---</th>
39 </tr>
40 {% for subtask in filtered_tasks %}
41 <tr>
42 <td><input name="link_task" type="checkbox" value="{{subtask.id_}}"/></td>
43 <td><a href="task?id={{subtask.id_}}">{{subtask.title}}</a></td>
44 </tr>
45 {% endfor %}
46 </table>
47 </td>
48 </tr>
49 </table>
50 <input type="submit" value="update" />
51 </form>
52 <form action="task" method="POST">
53 <input type="hidden" name="id" value="{{task.id_}}" />
54 {% include 'tagfilters.html' %}
55 <br />
56 search: <input name="search" value="{{search|e}}" />
57 <input type="submit" name="filter" value="filter" />
58 </form>
59 {% include 'watch_form.html' %}
60 {% endblock %}