eds/templates/intranet/list.html

39 lines
1.4 KiB
HTML

{% extends "cms/base_site.html" %}
{% load i18n static intranet %}
{% block content %}
<div id="content-main">
<h1>Module {{ module.url }} &mdash; Documents de cours</h1>
<div style="float: left; width: 500px">
<h3>Documents Étudiant</h3>
<ol>
{% for doc in object_list %}
{% if doc.get_authorization_display == 'étudiant' %}
<li><a href="{{ doc.doc.url }}">{{ doc.doc.name }}</a></li>
{% endif %}
{% empty %}
<p><i>Aucun document disponible.</i></p>
{% endfor %}
</ol>
</div>
{% if user|has_group:"prof" or user.is_staff %}
<div style="margin-left: 600px; width: 500px">
<h3>Documents ENSEIGNANT</h3>
<ol>
{% for doc in object_list %}
{% if doc.get_authorization_display == 'prof' %}
<li><a href="{{ doc.doc.url }}">{{ doc.doc.name }}</a></li>
{% endif %}
{% empty %}
<p><i>Aucun document disponible.</i></p>
{% endfor %}
</ol>
</div>
{% endif %}
{% if user.is_staff %}
<hr style="margin-top: 100px">
<p><a href="{% url 'admin:intranet_intranetdoc_changelist' %}">Gestion des documents</a></p>
{% endif %}
</div>
{% endblock %}