drinks-manager/app/templates/history.html

28 lines
565 B
HTML
Raw Normal View History

{% extends "baselayout.html" %}
{% load i18n %}
{% block title %}
2023-02-17 22:01:09 +01:00
{% translate "Drinks - History" %}
{% endblock %}
{% block content %}
2023-02-17 22:01:09 +01:00
<h1>{% translate "History" %}</h1>
{% if history %}
<table class="history">
<tr>
<th>{% translate "last 30 actions" %}</th>
<th></th>
</tr>
{% for h in history %}
<tr>
<td>{{ h.0 }}</td>
<td class="historydate">{{ h.1 }}</td>
</tr>
{% endfor %}
</table>
{% else %}
{% translate "No history." %}
{% endif %}
<script src="/static/js/autoreload.js"></script>
{% endblock %}