1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2024-11-30 09:33:03 +00:00
med/media/templates/media/index_emprunts.html
2019-08-08 21:08:24 +02:00

17 lines
465 B
HTML

{% extends "media/sidebar.html" %}
{% comment %}
SPDX-License-Identifier: GPL-3.0-or-later
{% endcomment %}
{% load i18n %}
{% block title %}Emprunts{% endblock %}
{% block content %}
<h2>Liste des emprunts</h2>
{% if user.is_staff %}
<a class="changelink" href="{% url 'admin:media_emprunt_changelist' %}">{% trans 'Go to admin' %}</a>
{% endif %}
{% include "media/aff_emprunts.html" with emprunts_list=emprunts_list %}
{% endblock %}