home · contact · privacy
Some Day template layout improvements.
[plomtask] / templates / day.html
1 {% extends '_base.html' %}
2 {% import '_macros.html' as macros %}
3
4
5
6 {% block css %}
7 table {
8   border-collapse: collapse;
9 }
10 th {
11   border: 1px solid black;
12 }
13 td.cond_line_0, td.cond_line_1, td.cond_line_2 {
14   padding: 0;
15   border-top: 1px solid white;
16 }
17 td.cond_line_0 {
18   background-color: #bfbfbf;
19 }
20 td.cond_line_1 {
21   background-color: #dfdfdf;
22 }
23 td.cond_line_2 {
24   background-color: #fffff;
25 }
26 td.cond_line_corner {
27   max-width: 0px;
28   white-space: nowrap;
29   overflow: hidden;
30   text-overflow: clip;
31 }
32 td.todo_line {
33   border-bottom: 1px solid #bfbfbf;
34   height: 1.7em;
35 }
36 tr.inactive > td.todo_line {
37   background-color: #bfbfbf;
38 }
39 tr.hidden_undone > td, tr.hidden_undone a {
40   color: #9f9f9f;
41 }
42 td.left_border {
43   border-left: 1px solid black;
44 }
45 td.right_border {
46   border-right: 1px solid black;
47 }
48 input.ablers {
49   width: 50em;
50 }
51 {% endblock %}
52
53
54
55 {% macro show_node_undone(node, indent) %}
56 {% if not node.todo.is_done %}
57 <tr {% if node.seen or not node.todo.is_doable %}class="inactive"{% endif %}>
58 {% if not node.seen %}
59 <input type="hidden" name="todo_id" value="{{node.todo.id_}}" />
60 {% endif %}
61
62 {% for condition in conditions_present %}
63 <td class="cond_line_{{loop.index0 % 3}}">
64 {% if condition in node.todo.conditions and not condition.is_active %}
65 O&nbsp;
66 {% elif condition in node.todo.blockers and condition.is_active %}
67 !&nbsp;
68 {% endif %}
69 </td>
70 {% endfor %}
71
72 {% if node.seen %}
73 <td class="todo_line left_border"></td>
74 <td class="todo_line">{% if node.todo.effort %}{{ node.todo.effort }}{% endif %}</td>
75 {% else %}
76 <td class="todo_line left_border"><input name="done" type="checkbox" value="{{node.todo.id_}}" {% if not node.todo.is_doable %}disabled{% endif %}/></td>
77 <td class="todo_line"><input name="effort" type="number" step=0.1 size=5 placeholder={{node.todo.effort_then}} value={{node.todo.effort}} /></td>
78 {% endif %}
79 <td class="todo_line right_border">
80 {% for i in range(indent) %}&nbsp; &nbsp; {% endfor %} +
81 {% if node.seen %}({% endif %}<a href="todo?id={{node.todo.id_}}">{{node.todo.title_then|e}}</a>{% if node.seen %}){% endif %}
82 </td>
83
84 {% for condition in conditions_present|reverse %}
85 <td class="cond_line_{{(conditions_present|length - loop.index) % 3}}">{% if condition in node.todo.enables %}&nbsp;+{% elif condition in node.todo.disables %}&nbsp;!{% endif %}</td>
86 {% endfor %}
87
88 <td colspan=2>
89 {% if node.seen %}
90 {{node.todo.comment|e}}
91 {% else %}
92 <input name="comment" type="text" value="{{node.todo.comment|e}}" />
93 {% endif %}
94 </td>
95
96 </tr>
97 {% endif %}
98
99 {% if not node.seen %}
100 {% for child in node.children %}
101 {{ show_node_undone(child, indent+1) }}
102 {% endfor %}
103 {% endif %}
104
105 {% endmacro %}
106
107
108
109 {% macro show_node_done(node, indent, path) %}
110 {% if node.todo.has_doneness_in_path %}
111 <tr{% if not node.todo.is_done %} class="hidden_undone"{% endif %}>
112 <td>
113 {% for i in range(indent) %}&nbsp; &nbsp; {% endfor %} +
114 {% if not node.todo.is_done %}({% endif %}<a href="todo?id={{node.todo.id_}}">{{node.todo.title_then|e}}</a>{% if not node.todo.is_done %}){% endif %}
115 </td>
116 <td>{{node.todo.comment|e}}</td>
117 </tr>
118
119 {% if not node.seen %}
120 {% for child in node.children %}
121 {{ show_node_done(child, indent+1) }}
122 {% endfor %}
123 {% endif %}
124 {% endif %}
125 {% endmacro %}
126
127
128
129 {% block content %}
130 <h3>{{day.date}} / {{day.weekday}}</h3>
131 <p>
132 <a href="day?date={{day.prev_date}}">prev</a> | <a href="day?date={{day.next_date}}">next</a>
133 </p>
134 <form action="day?date={{day.date}}" method="POST">
135
136 <p>
137 comment:
138 <input name="day_comment" type="text" value="{{day.comment|e}}" />
139 <input type="submit" value="OK" /></td>
140 </p>
141
142 <h4>to do</h4>
143
144 <p>
145 add: <input type="text" name="new_todo" list="processes">
146 </p>
147
148 <table>
149
150 <tr>
151 <th colspan={{ conditions_present|length + 3 + conditions_present|length }}>conditions</th>
152 <th>add enabler</th>
153 <th>add disabler</th>
154 </tr>
155
156 {% for condition in conditions_present %}
157 {% set outer_loop = loop %}
158 <tr>
159
160 {% for _ in conditions_present %}
161 {% if outer_loop.index > loop.index %}
162 <td class="cond_line_{{loop.index0 % 3}}">
163 {% elif outer_loop.index < loop.index %}
164 <td class="cond_line_{{outer_loop.index0 % 3}}">
165 {% else %}
166 <td class="cond_line_{{outer_loop.index0 % 3}} cond_line_corner">×
167 {% endif %}
168 </td>
169 {% endfor %}
170
171 <td class="cond_line_{{loop.index0 % 3}}"><input type="checkbox" disabled{% if condition.is_active %} checked{% endif %}></td>
172 <td colspan=2 class="cond_line_{{loop.index0 % 3}}"><a href="condition?id={{condition.id_}}">{{condition.title.at(day.date)|e}}</a></td>
173
174 {% for _ in conditions_present %}
175 {% if outer_loop.index0 + loop.index < conditions_present|length %}
176 <td class="cond_line_{{outer_loop.index0 % 3}}">
177 {% elif outer_loop.index0 + loop.index > conditions_present|length %}
178 <td class="cond_line_{{(conditions_present|length - loop.index) % 3}}">
179 {% else %}
180 <td class="cond_line_{{outer_loop.index0 % 3}} cond_line_corner">&nbsp;×
181 {% endif %}
182 {% endfor %}
183
184 {% set list_name = "todos_for_%s"|format(condition.id_) %}
185 <td><input class="ablers" type="text" name="new_todo" list="{{list_name}}" autocomplete="off" /></td>
186 {{ macros.datalist_of_titles(list_name, enablers_for[condition.id_]) }}
187 </td>
188 {% set list_name = "todos_against_%s"|format(condition.id_) %}
189 <td><input class="ablers" type="text" name="new_todo" list="{{list_name}}" autocomplete="off" /></td>
190 {{ macros.datalist_of_titles(list_name, disablers_for[condition.id_]) }}
191 </td>
192 </tr>
193 {% endfor %}
194
195 <tr>
196 {% for condition in conditions_present %}
197 <td class="cond_line_{{loop.index0 % 3}}"></td>
198 {% endfor %}
199 <th colspan=3>doables</th>
200 {% for condition in conditions_present %}
201 <td class="cond_line_{{(conditions_present|length - loop.index) % 3}}"></td>
202 {% endfor %}
203 <td colspan=2></td>
204 </tr>
205 {% for node in top_nodes %}
206 {{ show_node_undone(node, 0) }}
207 {% endfor %}
208
209 </table>
210
211 <h4>done</h4>
212
213 <table>
214 {% for node in top_nodes %}
215 {{ show_node_done(node, 0, []) }}
216 {% endfor %}
217 </table>
218
219 </form>
220
221 {{ macros.datalist_of_titles("processes", processes) }}
222 {% endblock %}