home · contact · privacy
Display historical VersionedAttributes where it makes sense.
[plomtask] / templates / calendar.html
index 220e9bb0f8ced2fc07cba917c3256d1b1fa82c2a..4d672421329c95208cb1ca5050130c78065bfe9b 100644 (file)
@@ -49,6 +49,14 @@ to <input name="end" value="{{end}}" />
 <td>{{day.comment|e}}</td>
 </tr>
 
+{% for todo in day.calendarized_todos %}
+<tr>
+<td>[{% if todo.is_done %}X{% else %} {% endif %}]</td>
+<td><a href="todo?id={{todo.id_}}">{{todo.title_then|e}}</td>
+<td>{{todo.comment|e}}</td>
+</tr>
+{% endfor %}
+
 {% endfor %}
 </table>
 {% endblock %}