home · contact · privacy
Improve accounting scripts, start todo.py rewrite.
[misc] / todo_templates / day_todos.html
index f2312eefe0a266338dc9d2d6243251795bcb54c6..4bdd7b33456ac56b8eba66f645ddc11392350add 100644 (file)
@@ -48,14 +48,14 @@ td.unbreakable { white-space: nowrap; }
 {% else %}
     
 {% endif %}
-<a href="todo?id={{todo.id_}}&return_to=day_todos">{{todo.title|e}}</a>
+<a href="todo?id={{todo.id_}}">{{todo.title|e}}</a>
 {% if todo.has_dependers or todo.has_deps %}
 </summary>
 {% if todo.has_dependers %}
 dependers:
 <ul>
 {% for path in todo.depender_paths %}
-<li>{% for depender_todo in path %}<a href="todo?id={{depender_todo.id_}}&return_to=day_todos">{{ depender_todo.title|e }}</a>{% if not loop.last %}:{% endif %}{% endfor %}
+<li>{% for depender_todo in path %}<a href="todo?id={{depender_todo.id_}}">{{ depender_todo.title|e }}</a>{% if not loop.last %}:{% endif %}{% endfor %}
 {% endfor %}
 </ul>
 {% endif %}
@@ -65,7 +65,7 @@ depends on:
 {% for dep_todo in todo.deps %}
 <li>
 {% if show_deps_doneness == true %}{{ macros.doneness_string(dep_todo) }}{% endif %}
-<a href="todo?id={{dep_todo.id_}}&return_to=day_todos">{{ dep_todo.title|e }}</a>{% if dep_todo.has_deps %}:+{% endif %}
+<a href="todo?id={{dep_todo.id_}}">{{ dep_todo.title|e }}</a>{% if dep_todo.has_deps %}:+{% endif %}
 {% endfor %}
 </ul>
 {% endif %}
@@ -78,7 +78,7 @@ depends on:
 {% macro todo_title_as_tree_node(todo, indent) %}
 {% for i in range(indent-1) %}&nbsp; &nbsp;{% endfor %}
 {% if indent>0 %}&nbsp;+{% endif %}
-{% if todo.been_observed %}({% endif %}<a href="todo?id={{todo.id_}}&return_to=day_todos">{{todo.title}}</a>{% if todo.been_observed %}){% endif %}
+{% if todo.been_observed %}({% endif %}<a href="todo?id={{todo.id_}}">{{todo.title}}</a>{% if todo.been_observed %}){% endif %}
 {% endmacro %}