diff options
Diffstat (limited to 'timer/templates/event_list.html')
-rw-r--r-- | timer/templates/event_list.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/timer/templates/event_list.html b/timer/templates/event_list.html new file mode 100644 index 0000000..033f004 --- /dev/null +++ b/timer/templates/event_list.html @@ -0,0 +1,5 @@ +{% for i in events %} + <li> + <a href="{{ i.get_absolute_url }}">{{ i.hours }}h @ {{ i.started_at|date:"SHORT_DATE_FORMAT" }} {{ i.started_at|date:"H:i" }} {{ i.notes }}</a> + </li> +{% endfor %} |