{% extends "admin/base_site.html" %} {% load i18n admin_urls static %} {% block extrahead %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %} {% if payments %}

{% translate "Confirm Refund Operation" %}

{% blocktrans count count=payments|length %}Are you sure you want to refund the following payment?{% plural %}Are you sure you want to refund the following {{ count }} payments?{% endblocktrans %}

{% for payment in payments %} {% endfor %}
{% translate "Reference Number" %} {% translate "Refundable Amount" %} {% translate "Status" %}
{{ payment.reference_number|default:payment.ecommerce_id }} ${{ payment.refundable_amount }} {{ payment.get_status_display }}
{% csrf_token %} {% for obj in queryset %} {% endfor %}
{% else %}

{% translate "No refundable payments selected." %}

{% translate "Go back" %}

{% endif %} {% endblock %}