{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load i18n %} {% load crispy_forms_tags pretty_money %} {% load render_table from django_tables2 %} {% block content %}

{% trans "Remittance #" %}{{ object.pk }}

{% if object.pk %}
{% endif %} {% crispy form %}

{% trans "Linked transactions" %}

{% if special_transactions.data %} {% render_table special_transactions %} {% else %}
{% trans "There is no transaction linked with this remittance." %}
{% endif %}
{% endblock %}