1 {% extends 'base.html' %}
5 {% macro step_with_steps(step_id, step_node, indent) %}
8 <input type="hidden" name="steps" value="{{step_id}}" />
9 {% if step_node.is_explicit %}
10 <input type="checkbox" name="keep_step" value="{{step_id}}" checked />
11 <input type="hidden" name="step_{{step_id}}_process_id" value="{{step_node.process.id_}}" />
12 <input type="hidden" name="step_{{step_id}}_parent_id" value="{{step_node.parent_id or ''}}" />
15 <td>{% for i in range(indent) %}+{%endfor %}
16 {% if (not step_node.is_explicit) and step_node.seen %}
17 <a href="process?id={{step_node.process.id_}}">({{step_node.process.title.newest|e}})</a>
19 <a href="process?id={{step_node.process.id_}}">{{step_node.process.title.newest|e}}</a>
23 {% if step_node.is_explicit %}
24 add step: <input name="new_step_to_{{step_id}}" list="candidates" autocomplete="off" />
28 {% if step_node.is_explicit or not step_node.seen %}
29 {% for substep_id, substep in step_node.steps.items() %}
30 {{ step_with_steps(substep_id, substep, indent+1) }}
39 <form action="process?id={{process.id_ or ''}}" method="POST">
43 <td><input name="title" value="{{process.title.newest|e}}" /></td>
46 <th>default effort</th>
47 <td><input name="effort" type="number" step=0.1 value={{process.effort.newest}} /></td>
51 <td><textarea name="description">{{process.description.newest|e}}</textarea></td>
57 {% for condition in process.conditions %}
60 <input type="checkbox" name="condition" value="{{condition.id_}}" checked />
63 <a href="condition?id={{condition.id_}}">{{condition.title.newest|e}}</a>
68 add condition: <input name="condition" list="condition_candidates" autocomplete="off" />
75 {% for condition in process.enables %}
78 <input type="checkbox" name="enables" value="{{condition.id_}}" checked />
81 <a href="condition?id={{condition.id_}}">{{condition.title.newest|e}}</a>
86 add enables: <input name="enables" list="condition_candidates" autocomplete="off" />
93 {% for condition in process.disables %}
96 <input type="checkbox" name="disables" value="{{condition.id_}}" checked />
99 <a href="condition?id={{condition.id_}}">{{condition.title.newest|e}}</a>
104 add disables: <input name="disables" list="condition_candidates" autocomplete="off" />
111 {% for step_id, step_node in steps.items() %}
112 {{ step_with_steps(step_id, step_node, 0) }}
115 add step: <input name="new_top_step" list="step_candidates" autocomplete="off" />
119 <datalist id="condition_candidates">
120 {% for condition_candidate in condition_candidates %}
121 <option value="{{condition_candidate.id_}}">{{condition_candidate.title.newest|e}}</option>
124 <datalist id="step_candidates">
125 {% for candidate in step_candidates %}
126 <option value="{{candidate.id_}}">{{candidate.title.newest|e}}</option>
129 <input class="btn-harmless" type="submit" name="update" value="update" />
130 <div class="btn-to-right">
131 <input class="btn-dangerous" type="submit" name="delete" value="delete" />
136 {% for owner in owners %}
137 <li><a href="process?id={{owner.id_}}">{{owner.title.newest|e}}</a>