2020-03-22 17:27:22 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load render_table from django_tables2 %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
|
2020-03-23 21:43:16 +00:00
|
|
|
<h2>{% trans "Opened remittances" %}</h2>
|
|
|
|
{% render_table opened_remittances %}
|
2020-03-22 17:27:22 +00:00
|
|
|
|
2020-03-23 21:43:16 +00:00
|
|
|
<a class="btn btn-primary" href="{% url 'treasury:remittance_create' %}">{% trans "New remittance" %}</a>
|
2020-03-22 17:27:22 +00:00
|
|
|
|
2020-03-23 21:43:16 +00:00
|
|
|
<hr>
|
|
|
|
|
|
|
|
<h2>{% trans "Transfers without remittances" %}</h2>
|
|
|
|
{% render_table special_transactions_no_remittance %}
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
<h2>{% trans "Transfers with opened remittances" %}</h2>
|
|
|
|
{% render_table special_transactions_with_remittance %}
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
<h2>{% trans "Closed remittances" %}</h2>
|
|
|
|
{% render_table closed_remittances %}
|
2020-03-22 17:27:22 +00:00
|
|
|
{% endblock %}
|