You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
konova/templates/log.html

33 lines
842 B
HTML

{% load i18n %}
<div class="table-container scroll-300">
<table class="table table-hover">
<thead>
<tr>
<th scope="col">
{% trans 'Timestamp' %}
</th>
<th scope="col">
{% trans 'Action' %}
</th>
<th scope="col">
{% trans 'User' %}
</th>
</tr>
</thead>
<tbody>
{% for entry in log %}
<tr>
<td>
{{entry.timestamp}}
</td>
<td>
{{ entry.action_humanize}}
</td>
<td>
{{entry.user}}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>