{% extends "base.html" %} {% load i18n static pretty_money %} {# Remove page title #} {% block contenttitle %}{% endblock %} {% block content %} {# Regroup buttons under categories #} {% regroup transaction_templates by category as categories %}
{% csrf_token %}
{% if form.non_field_errors %}

{% for error in form.non_field_errors %} {{ error }} {% endfor %}

{% endif %} {% for field in form %}
{{ field.errors }}
{{ field.label_tag }} {% if field.is_readonly %}
{{ field.contents }}
{% else %} {{ field }} {% endif %} {% if field.field.help_text %}
{{ field.field.help_text|safe }}
{% endif %}
{% endfor %}
{# Tabs for button categories #}
{# Tabs content #}
{% for category in categories %}
{% for button in category.list %} {% endfor %}
{% endfor %}
{% endblock %} {% block extrajavascript %} {% endblock %}