home · contact · privacy
Improve template layouts.
[plomtask] / templates / process.html
index 2a577152720c2101353767182f443d9d7fd11874..10442cfe76bffd5e85788b82e12f184f1ff94b72 100644 (file)
@@ -21,7 +21,7 @@
 </td>
 <td>
 {% if step_node.is_explicit %}
-add step: <input name="new_step_to_{{step_id}}" list="candidates" autocomplete="off" />
+add: <input name="new_step_to_{{step_id}}" list="candidates" autocomplete="off" />
 {% endif %}
 </td>
 </tr>
@@ -38,18 +38,22 @@ add step: <input name="new_step_to_{{step_id}}" list="candidates" autocomplete="
 <h3>process</h3>
 <form action="process?id={{process.id_ or ''}}" method="POST">
 <table>
+
 <tr>
 <th>title</th>
 <td><input name="title" value="{{process.title.newest|e}}" /></td>
 </tr>
+
 <tr>
 <th>default effort</th>
 <td><input name="effort" type="number" step=0.1 value={{process.effort.newest}} /></td>
 </tr>
+
 <tr>
 <th>description</th>
 <td><textarea name="description">{{process.description.newest|e}}</textarea></td>
 </tr>
+
 <tr>
 <th>conditions</th>
 <td>
@@ -65,9 +69,10 @@ add step: <input name="new_step_to_{{step_id}}" list="candidates" autocomplete="
 </tr>
 {% endfor %}
 </table>
-add condition: <input name="condition" list="condition_candidates" autocomplete="off" />
+add: <input name="condition" list="condition_candidates" autocomplete="off" />
 </td>
 </tr>
+
 <tr>
 <th>enables</th>
 <td>
@@ -83,9 +88,10 @@ add condition: <input name="condition" list="condition_candidates" autocomplete=
 </tr>
 {% endfor %}
 </table>
-add enables: <input name="enables" list="condition_candidates" autocomplete="off" />
+add: <input name="enables" list="condition_candidates" autocomplete="off" />
 </td>
 </tr>
+
 <tr>
 <th>disables</th>
 <td>
@@ -101,9 +107,10 @@ add enables: <input name="enables" list="condition_candidates" autocomplete="off
 </tr>
 {% endfor %}
 </table>
-add disables: <input name="disables" list="condition_candidates" autocomplete="off" />
+add: <input name="disables" list="condition_candidates" autocomplete="off" />
 </td>
 </tr>
+
 <tr>
 <th>steps</th>
 <td>
@@ -112,9 +119,19 @@ add disables: <input name="disables" list="condition_candidates" autocomplete="o
 {{ step_with_steps(step_id, step_node, 0) }}
 {% endfor %}
 </table>
-add step: <input name="new_top_step" list="step_candidates" autocomplete="off" />
+add: <input name="new_top_step" list="step_candidates" autocomplete="off" />
+</td>
+<tr>
+
+<tr>
+<th>step of</th>
+<td>
+{% for owner in owners %}
+<a href="process?id={{owner.id_}}">{{owner.title.newest|e}}</a><br />
+{% endfor %}
 </td>
 <tr>
+
 </table>
 <datalist id="condition_candidates">
 {% for condition_candidate in condition_candidates %}
@@ -126,15 +143,10 @@ add step: <input name="new_top_step" list="step_candidates" autocomplete="off" /
 <option value="{{candidate.id_}}">{{candidate.title.newest|e}}</option>
 {% endfor %}
 </datalist>
+
 <input class="btn-harmless" type="submit" name="update" value="update" />
 <div class="btn-to-right">
 <input class="btn-dangerous" type="submit" name="delete" value="delete" />
 </div>
 </form>
-<h4>step of</h4>
-<ul>
-{% for owner in owners %}
-<li><a href="process?id={{owner.id_}}">{{owner.title.newest|e}}</a>
-{% endfor %}
-</ul>
 {% endblock %}