home · contact · privacy
Add expression of summations of efforts in Day display.
[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>{{node.todo.performed_effort}}</td>
113 <td>{{node.todo.tree_effort|round(1)}}</td>
114 <td>
115 {% for i in range(indent) %}&nbsp; &nbsp; {% endfor %} +
116 {% 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 %}
117 </td>
118 <td>{{node.todo.comment|e}}</td>
119 </tr>
120 {% if not node.seen %}
121 {% for child in node.children %}
122 {{ show_node_done(child, indent+1) }}
123 {% endfor %}
124 {% endif %}
125 {% endif %}
126 {% endmacro %}
127
128
129
130 {% block content %}
131 <h3>{{day.date}} / {{day.weekday}} ({{total_effort|round(1)}})</h3>
132 <p>
133 <a href="day?date={{day.prev_date}}">prev</a> | <a href="day?date={{day.next_date}}">next</a>
134 </p>
135 <form action="day?date={{day.date}}" method="POST">
136
137 <p>
138 comment:
139 <input name="day_comment" type="text" value="{{day.comment|e}}" />
140 <input type="submit" value="OK" /></td>
141 </p>
142
143 <h4>to do</h4>
144
145 <p>
146 add: <input type="text" name="new_todo" list="processes">
147 </p>
148
149 <table>
150
151 <tr>
152 <th colspan={{ conditions_present|length + 3 + conditions_present|length }}>conditions</th>
153 <th>add enabler</th>
154 <th>add disabler</th>
155 </tr>
156
157 {% for condition in conditions_present %}
158 {% set outer_loop = loop %}
159 <tr>
160
161 {% for _ in conditions_present %}
162 {% if outer_loop.index > loop.index %}
163 <td class="cond_line_{{loop.index0 % 3}}">
164 {% elif outer_loop.index < loop.index %}
165 <td class="cond_line_{{outer_loop.index0 % 3}}">
166 {% else %}
167 <td class="cond_line_{{outer_loop.index0 % 3}} cond_line_corner">×
168 {% endif %}
169 </td>
170 {% endfor %}
171
172 <td class="cond_line_{{loop.index0 % 3}}"><input type="checkbox" disabled{% if condition.is_active %} checked{% endif %}></td>
173 <td colspan=2 class="cond_line_{{loop.index0 % 3}}"><a href="condition?id={{condition.id_}}">{{condition.title.at(day.date)|e}}</a></td>
174
175 {% for _ in conditions_present %}
176 {% if outer_loop.index0 + loop.index < conditions_present|length %}
177 <td class="cond_line_{{outer_loop.index0 % 3}}">
178 {% elif outer_loop.index0 + loop.index > conditions_present|length %}
179 <td class="cond_line_{{(conditions_present|length - loop.index) % 3}}">
180 {% else %}
181 <td class="cond_line_{{outer_loop.index0 % 3}} cond_line_corner">&nbsp;×
182 {% endif %}
183 {% endfor %}
184
185 {% set list_name = "todos_for_%s"|format(condition.id_) %}
186 <td><input class="ablers" type="text" name="new_todo" list="{{list_name}}" autocomplete="off" /></td>
187 {{ macros.datalist_of_titles(list_name, enablers_for[condition.id_]) }}
188 </td>
189 {% set list_name = "todos_against_%s"|format(condition.id_) %}
190 <td><input class="ablers" type="text" name="new_todo" list="{{list_name}}" autocomplete="off" /></td>
191 {{ macros.datalist_of_titles(list_name, disablers_for[condition.id_]) }}
192 </td>
193 </tr>
194 {% endfor %}
195
196 <tr>
197 {% for condition in conditions_present %}
198 <td class="cond_line_{{loop.index0 % 3}}"></td>
199 {% endfor %}
200 <th colspan=3>doables</th>
201 {% for condition in conditions_present %}
202 <td class="cond_line_{{(conditions_present|length - loop.index) % 3}}"></td>
203 {% endfor %}
204 <td colspan=2></td>
205 </tr>
206 {% for node in top_nodes %}
207 {{ show_node_undone(node, 0) }}
208 {% endfor %}
209
210 </table>
211
212 <h4>done</h4>
213
214 <table>
215 {% for node in top_nodes %}
216 {{ show_node_done(node, 0, []) }}
217 {% endfor %}
218 </table>
219
220 </form>
221
222 {{ macros.datalist_of_titles("processes", processes) }}
223 {% endblock %}