home · contact · privacy
Improve todo accounting.
[misc] / todo_templates / calendar.html
diff --git a/todo_templates/calendar.html b/todo_templates/calendar.html
new file mode 100644 (file)
index 0000000..8f0aa8e
--- /dev/null
@@ -0,0 +1,27 @@
+{% extends 'base.html' %}
+{% block css %}
+tr.week_row td { height: 0.1em; background-color: black; }
+tr.day_row td { background-color: #f2f2f2 }
+td.checkbox { width: 0.1em; height: 0.1em; padding: 0em; text-align: center; }
+{% endblock %}
+{% block content %}
+<form action="{{action|e}}" method="POST">
+<p>
+from: <input name="start" {% if start_date %}value="{{ start_date }}"{% endif %} placeholder="{{ today }}" />
+to: <input name="end" {% if end_date %}value="{{ end_date }}"{% endif %} placeholder="2030-12-31" />
+<input type="submit" value="OK" />
+</p>
+<table>
+{% for date, day in days.items() | sort() %}
+{% if day.weekday == 'Mo' %}<tr class="week_row"><td colspan=3></td></tr>{% endif %}
+<tr class="day_row"><td colspan=3><a href="{{db.prefix}}/day?selected_date={{date}}&hide_unchosen=1">{{ day.weekday }} {{ date }}</a> |{{ '%04.1f' % day.todos_sum|round(2) }}| {{ day.comment|e }}</td></tr>
+{% for task, todo in day.todos.items() | sort(attribute='1.title', reverse=True)  %}
+{% if todo.visible %}
+<tr><td class="checkbox">{% if todo.done %}✓{% else %}&nbsp;&nbsp;{% endif %}</td><td><a href="{{db.prefix}}/todo?task={{ todo.task.id_ }}&date={{ date }}">{%if "cancelled" in todo.tags%}<s>{% endif %}{% if "deadline" in todo.tags %}DEADLINE: {% endif %}{{ todo.title|e }}{%if "cancelled" in todo.tags%}</s>{% endif %}</a></td><td>{{ todo.comment|e }}</td></tr>
+{% endif %}
+{% endfor %}
+{% endfor %}
+</table>
+</form>
+{% endblock %}
+