diff options
author | Filipp Lepalaan <f@0x00.co> | 2013-01-31 20:08:20 +0200 |
---|---|---|
committer | Filipp Lepalaan <f@0x00.co> | 2013-01-31 20:08:20 +0200 |
commit | c0121b9b7f5041f6434a2e2dd24d3c68ed84b582 (patch) | |
tree | e3e8d0a05c45dabcc2a0399f902c6a59c92a9f4f /timer/templates/event_grid.html | |
parent | e613dc2b8b17e6f58a9666bee03578bb7ffc4067 (diff) | |
download | opus-c0121b9b7f5041f6434a2e2dd24d3c68ed84b582.tar.gz opus-c0121b9b7f5041f6434a2e2dd24d3c68ed84b582.tar.bz2 opus-c0121b9b7f5041f6434a2e2dd24d3c68ed84b582.zip |
Initial commit
Diffstat (limited to 'timer/templates/event_grid.html')
-rw-r--r-- | timer/templates/event_grid.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/timer/templates/event_grid.html b/timer/templates/event_grid.html new file mode 100644 index 0000000..efc8a39 --- /dev/null +++ b/timer/templates/event_grid.html @@ -0,0 +1,30 @@ +{% extends "timer.html" %} + +{% block main_content %} +<table style="width:100%;border:1px; solid #ccc"> + <thead> + <tr> + <th>Date</th> + <th>Started</th> + <th>Finished</th> + <th>Total</th> + <th>Week Total</th> + </tr> + </thead> + <tbody> + {% for e in events %} + <tr> + <td>{{ started_at|date:"SHORT_DATE_FORMAT" }}</td> + </tr> + {% endfor %} + </tbody> + <tfoot> + <tr> + <td>Normal Hours:</td> + <td>{{ normal_hours }}</td> + <td>Over Time:</td> + <td>{{ over_time }}</td> + </tr> + </tfoot> +</table> +{% endblock main_content %} |