You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
769 B
35 lines
769 B
{% extends "layout-overview.html" %} |
|
{% block body %} |
|
<h1 class="uk-heading-primary uk-text-center uk-heading-divider">{{ type }}</h1> |
|
|
|
<center> |
|
<div class="uk-text-large uk-align-center"> |
|
|
|
<table class="uk-table uk-align-center"> |
|
<caption></caption> |
|
<thead> |
|
<tr> |
|
<td>Name</td> |
|
<td>Duration</td> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
{% for entry in entries %} |
|
<tr> |
|
<td>{{ entry.username }}</td> |
|
<td> |
|
{% if entry.duration == '99:99:99' %} |
|
No time yet |
|
{% else %} |
|
{{ entry.duration }} |
|
{% endif %} |
|
</td> |
|
</tr> |
|
{% endfor %} |
|
</tbody> |
|
</table> |
|
|
|
</div> |
|
</center> |
|
{% endblock %} |
|
|
|
|