mirror of https://gitlab.crans.org/bde/nk20
11 lines
255 B
HTML
11 lines
255 B
HTML
|
{% extends "base.html" %}
|
||
|
{% load render_table from django_tables2 %}
|
||
|
{% load i18n %}
|
||
|
{% block content %}
|
||
|
|
||
|
{% render_table table %}
|
||
|
|
||
|
<a class="btn btn-primary" href="{% url 'treasury:remittance_create' %}">{% trans "New remittance" %}</a>
|
||
|
|
||
|
{% endblock %}
|