home · contact · privacy
Refactor from_table_row methods of core DB models.
[plomtask] / templates / todo.html
index 9be13a80c9be3f9446a91f31222994bbc4642d57..1fa2922c7c7912b67b1d77a42db6d816b9534ccc 100644 (file)
@@ -5,7 +5,7 @@
 <form action="todo?id={{todo.id_}}" method="POST">
 <p>
 id: {{todo.id_}}<br />
-day: <a href="day?date={{todo.day.date}}">{{todo.day.date}}</a><br />
+day: <a href="day?date={{todo.date}}">{{todo.date}}</a><br />
 process: <a href="process?id={{todo.process.id_}}">{{todo.process.title.newest|e}}</a><br />
 done: <input type="checkbox" name="done" {% if todo.is_done %}checked {% endif %} {% if not todo.is_doable %}disabled {% endif %}/><br /> 
 </p>