home · contact · privacy
Allow creation of new Todos rather than just adoption from Todo edit view.
[plomtask] / templates / todo.html
index a2ef536eaf8230b21be7d3049db878a5a34c7cec..870eab35dd91449e367d15f4ca3c4bc1d95ae806 100644 (file)
@@ -69,7 +69,8 @@
 
 <tr>
 <th>children</th>
-<td>{{ macros.simple_checkbox_table("adopt", todo.children, "todo", "todo_candidates", "adopt", true) }}</td>
+<td>{{ macros.simple_checkbox_table("adopt", todo.children, "todo", "todo_candidates", "adopt", true) }}<br />
+make: <input name="make" list="process_candidates" autocomplete="off" /></td>
 </tr>
 
 </table>
@@ -77,6 +78,7 @@
 </form>
 
 {{ macros.datalist_of_titles("condition_candidates", condition_candidates) }}
+{{ macros.datalist_of_titles("process_candidates", process_candidates) }}
 <datalist id="todo_candidates">
 {% for candidate in todo_candidates %}
 <option value="{{candidate.id_}}">{{candidate.title.newest|e}} {{candidate.comment|e}}</option>