{% load i18n %} {% block cell-content %} {% if errors or refunds or not cell.hide_if_empty %} {% if title %}

{{ title|safe }}

{% endif %}
{% if text %}{{ text|safe }}{% endif %} {% if errors %} {% endif %} {% if refunds %}
{% for refund in refunds %} {% endfor %}
{% trans "Number" %} {% trans "Refund date" %} {% trans "Amount" %}
{{ refund.display_id }} {{ refund.creation_date|date:"SHORT_DATE_FORMAT" }} {% if refund.real_creation_date %}
({% blocktrans with cdate=refund.real_creation_date|date:"SHORT_DATE_FORMAT" context "refund" %}created on {{ cdate }}{% endblocktrans %}) {% endif %}
{% if refund.amount %}{% blocktrans with amount=refund.amount|floatformat:"2" %}{{ amount }}€{% endblocktrans %}{% endif %}
{% include "combo/pagination.html" with previous_label=_("Previous refunds") next_label=_("Next refunds") %} {% else %} {% trans "No refunds yet" %} {% endif %}
{% endif %} {% endblock %}