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

10 lines
304 B
HTML
Raw Normal View History

2016-08-17 17:36:19 +02:00
{% 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 %}