home · contact · privacy
Improve accounting scripts, start todo.py rewrite.
[misc] / new_todo / html / day.html
diff --git a/new_todo/html/day.html b/new_todo/html/day.html
new file mode 100644 (file)
index 0000000..caad470
--- /dev/null
@@ -0,0 +1,11 @@
+{% extends 'base.html' %}
+
+{% block content %}
+<a href="day?id={{day.prev_date}}">prev</a> | <a href="day?id={{day.next_date}}">next</a>
+<h3>{{day.date|e}} ({{day.weekday|e}})</h3>
+<form action="day?id={{day.date|e}}" method="POST">
+<input name="date" type="hidden" value="{{day.date|e}}">
+comment: <input name="comment" value="{{day.comment|e}}">
+<input type="submit" value="OK">
+</form>
+{% endblock %}