2020-03-22 17:27:22 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load static %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% load crispy_forms_tags pretty_money %}
|
2020-03-23 21:43:16 +00:00
|
|
|
{% load render_table from django_tables2 %}
|
2020-03-22 17:27:22 +00:00
|
|
|
{% block content %}
|
|
|
|
<p><a class="btn btn-default" href="{% url 'treasury:remittance_list' %}">{% trans "Remittances list" %}</a></p>
|
|
|
|
{% crispy form %}
|
2020-03-23 21:43:16 +00:00
|
|
|
{% render_table special_transactions %}
|
2020-03-22 17:27:22 +00:00
|
|
|
{% endblock %}
|