{% extends "base.html" %} {% load static %} {% load i18n %} {% load crispy_forms_tags pretty_money %} {% load render_table from django_tables2 %} {% block content %}

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

{% trans "Remittances list" %}

{% 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 %}