{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load i18n static pretty_money django_tables2 %} {# Use a fluid-width container #} {% block containertype %}container-fluid{% endblock %} {% block content %}
{# User details column #}
{% trans "Please select a note" %}
{# User selection column #}

{% trans "Consum" %}

{# User search with autocompletion #}
{# Summary of consumption and consume button #}

{% trans "Select consumptions" %}

{# Show last used buttons #}

{% trans "Highlighted buttons" %}

{% for button in highlighted %} {% if button.display %} {% endif %} {% endfor %}
{# Buttons column #}
{# Regroup buttons under categories #}
{# Tabs for button categories #}
{# Tabs content #}
{% for category in categories %}
{% for button in category.templates_filtered %} {% if button.display %} {% endif %} {% endfor %}
{% endfor %}
{# Mode switch #}
{# history of transaction #}

{% trans "Recent transactions history" %}

{% render_table table %}
{% endblock %} {% block extrajavascript %} {% endblock %}