home · contact · privacy
Enhance layouts.
[plomtask] / templates / todos.html
index 6b733e059335b4e0c751e9ad750b0fde54b00f73..3dd1f3f7a7dad3c510d3b4a8384a3bff95dc3ca1 100644 (file)
@@ -25,9 +25,9 @@ in comment  <input name="comment_pattern" value="{{comment_pattern}}" />
 {% for todo in todos %}
 <tr>
 <td>[{% if todo.is_done %}x{% else %} {% endif %}]</td>
-<td><a href="{{todo.date}}">{{todo.date}}</a></td>
+<td><a href="day?date={{todo.date}}">{{todo.date}}</a></td>
 <td><a href="todo?id={{todo.id_}}">{{todo.title_then}}</a></td>
-<td><a href="{{todo.comment}}">{{todo.comment}}</a></td>
+<td>{{todo.comment}}</td>
 </tr>
 {% endfor %}
 </table>