diff options
Diffstat (limited to 'templates/viewlog.html')
| -rw-r--r-- | templates/viewlog.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/viewlog.html b/templates/viewlog.html new file mode 100644 index 0000000..8a47ccc --- /dev/null +++ b/templates/viewlog.html @@ -0,0 +1,22 @@ +{% extends 'base.html' %} + +{% block body %} + +<h2>{{ the_title }}</h2> + +<table> + <tr> + {% for row_title in the_row_titles %} + <th>{{row_title}}</th> + {% endfor %} + </tr> + {% for log_row in the_data %} + <tr> + {% for item in log_row %} + <td>{{item}}</td> + {% endfor %} + </tr> + {% endfor %} +</table> + +{% endblock %} |
