med/media/templates/media/index_medias.html

17 lines
452 B
HTML
Raw Normal View History

2017-06-30 01:25:07 +00:00
{% extends "media/sidebar.html" %}
{% comment %}
2019-08-08 17:16:54 +00:00
SPDX-License-Identifier: GPL-3.0-or-later
{% endcomment %}
2019-08-08 19:08:24 +00:00
{% load i18n %}
2017-06-30 01:25:07 +00:00
{% block title %}Media{% endblock %}
{% block content %}
2019-08-08 17:16:54 +00:00
<h2>Liste des medias</h2>
2019-08-08 19:08:24 +00:00
{% if user.is_staff %}
<a class="changelink" href="{% url 'admin:media_media_changelist' %}">{% trans 'Go to admin' %}</a>
2019-08-08 17:16:54 +00:00
{% endif %}
{% include "media/aff_medias.html" with medias_list=medias_list %}
{% endblock %}