28 lines
No EOL
613 B
HTML
28 lines
No EOL
613 B
HTML
{% extends "baselayout.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block title %}
|
|
{% translate "Drinks - History" %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{% translate "History" %}</h1>
|
|
{% if history %}
|
|
<table class="history">
|
|
<tr>
|
|
<th colspan="3">{% translate "last 30 actions" %}</th>
|
|
</tr>
|
|
{% for h in history %}
|
|
<tr>
|
|
<td class="text-align-right">{{ h.0 }} {{ currency_suffix }}</td>
|
|
<td>{{ h.1 }}</td>
|
|
<td>{{ h.2 }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% else %}
|
|
{% translate "No history." %}
|
|
{% endif %}
|
|
<script src="/static/js/autoreload.js"></script>
|
|
{% endblock %} |