home · contact · privacy
Display what Processes use focused Process as ProcessStep.
[plomtask] / templates / process.html
index 1dcfff627c99f0f17218392ac86aee7f0b607502..8731f4b7b12646fb9a4cc44e4726ff543f91ba8a 100644 (file)
@@ -31,11 +31,12 @@ add step: <input name="new_step_to_{{step_id}}" list="candidates" autocomplete="
 {% endmacro %}
 
 {% block content %}
-<h3>Process</h3>
+<h3>process</h3>
 <form action="process?id={{process.id_ or ''}}" method="POST">
 title: <input name="title" value="{{process.title.newest|e}}" />
 description: <input name="description" value="{{process.description.newest|e}}" />
 default effort: <input name="effort" type="number" step=0.1 value={{process.effort.newest}} />
+<h4>steps</h4>
 <table>
 {% for step_id, step_node in steps.items() %}
 {{ process_with_steps(step_id, step_node, 0) }}
@@ -47,8 +48,15 @@ add step: <input name="new_top_step" list="candidates" autocomplete="off" />
 <option value="{{candidate.id_}}">{{candidate.title.newest|e}}</option>
 {% endfor %}
 </datalist>
+<h4>save</h4>
 <input type="submit" value="OK" />
 </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 %}