home · contact · privacy
caad4703a452bddf79380da804de74c15eb7305c
[misc] / new_todo / html / day.html
1 {% extends 'base.html' %}
2
3 {% block content %}
4 <a href="day?id={{day.prev_date}}">prev</a> | <a href="day?id={{day.next_date}}">next</a>
5 <h3>{{day.date|e}} ({{day.weekday|e}})</h3>
6 <form action="day?id={{day.date|e}}" method="POST">
7 <input name="date" type="hidden" value="{{day.date|e}}">
8 comment: <input name="comment" value="{{day.comment|e}}">
9 <input type="submit" value="OK">
10 </form>
11 {% endblock %}