home · contact · privacy
For Processes and Conditions, in edit page title warn if creation NEW.
[plomtask] / templates / process.html
index 8944c955688da6cc1021559645a36f0e34603938..f073a5798ed6d0e0a757d4155334f1da7d721e66 100644 (file)
 {% endif %}
 </td>
 <td>{% for i in range(indent) %}+{%endfor %}
-{% if (not step_node.is_explicit) and step_node.seen %}
+{% if step_node.is_suppressed %}<del>{% endif %}
+{% if step_node.seen %}
 <a href="process?id={{step_node.process.id_}}">({{step_node.process.title.newest|e}})</a>
 {% else %}
 <a href="process?id={{step_node.process.id_}}">{{step_node.process.title.newest|e}}</a>
 {% endif %}
+{% if step_node.is_suppressed %}<del>{% endif %}
 </td>
 <td>
 {% if step_node.is_explicit %}
-add sub-step: <input name="new_step_to_{{step_id}}" list="candidates" autocomplete="off" />
+add sub-step: <input name="new_step_to_{{step_id}}" list="step_candidates" autocomplete="off" />
+{% elif not step_node.seen %}
+<input type="checkbox" name="suppresses" value="{{step_id}}" {% if step_node.is_suppressed %}checked{% endif %}> suppress
 {% endif %}
 </td>
 </tr>
@@ -36,7 +40,7 @@ add sub-step: <input name="new_step_to_{{step_id}}" list="candidates" autocomple
 
 
 {% block content %}
-<h3>process</h3>
+<h3>{% if is_new %}NEW {% endif %}process</h3>
 <form action="process?id={{process.id_ or ''}}" method="POST">
 <table>
 
@@ -90,7 +94,7 @@ add sub-step: <input name="new_step_to_{{step_id}}" list="candidates" autocomple
 </table>
 add: <input name="new_top_step" list="step_candidates" autocomplete="off" />
 </td>
-<tr>
+</tr>
 
 <tr>
 <th>step of</th>
@@ -99,14 +103,14 @@ add: <input name="new_top_step" list="step_candidates" autocomplete="off" />
 <a href="process?id={{owner.id_}}">{{owner.title.newest|e}}</a><br />
 {% endfor %}
 </td>
-<tr>
+</tr>
 
 <tr>
 <th>todos</th>
 <td>
 <a href="todos?process_id={{process.id_}}">{{n_todos}}</a><br />
 </td>
-<tr>
+</tr>
 
 </table>
 {{ macros.edit_buttons() }}