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

16 lines
508 B
HTML

{% extends 'base.html' %}
{% load l10n %}
{% block content %}
<h1>
{% block title %}Latest refunds{% endblock %}
{% if user.is_authenticated %}
<div class="btn-group pull-right">
<a class="btn btn-success" href="{% url 'new_refund' %}">
<span class="glyphicon glyphicon-plus"></span>
</a>
</div>
{% endif %}
</h1>
{% include 'refunding/elements_list.html' with elements=refunds %}
{% endblock %}