django-refunds/refunding/templates/refunding/refunded_payments.html

10 lines
304 B
HTML

{% extends 'base.html' %}
{% load l10n %}
{% block content %}
<h1>
{% block title %}Refunded payments{% endblock %}
</h1>
{% include 'refunding/elements_list.html' with elements=refunded %}
<a href="{% url 'not_refunded_payments' %}">Only not refunded payments</a>
{% endblock %}