home · contact · privacy
Various small fixes.
[misc] / todo_templates / task.html
index 05a661193eecbc990c90c270439359fdd8aa4a4f..85347efece93587e0f595050af3880ad9ec6e956 100644 (file)
@@ -28,19 +28,19 @@ add: <input name="joined_tags" type="text" value="" ><br />
 <tr><th>children</th>
 <td>
 <table>
-{% for task in linked_tasks %}
+{% for subtask in linked_tasks %}
 <tr>
-<td><input name="link_task" type="checkbox" value="{{task.id_}}" checked/></td>
-<td><a href="task?id={{task.id_}}">{{task.title}}</a></td>
+<td><input name="link_task" type="checkbox" value="{{subtask.id_}}" checked/></td>
+<td><a href="task?id={{subtask.id_}}">{{subtask.title}}</a></td>
 </tr>
 {% endfor %}
 <tr>
 <th colspan=2>---</th>
 </tr>
-{% for task in filtered_tasks %}
+{% for subtask in filtered_tasks %}
 <tr>
-<td><input name="link_task" type="checkbox" value="{{task.id_}}"/></td>
-<td><a href="task?id={{task.id_}}">{{task.title}}</a></td>
+<td><input name="link_task" type="checkbox" value="{{subtask.id_}}"/></td>
+<td><a href="task?id={{subtask.id_}}">{{subtask.title}}</a></td>
 </tr>
 {% endfor %}
 </table>