This commit is contained in:
alazo 2017-04-07 08:12:29 +02:00
parent ff091dc3e7
commit 1484d6cc6d
1582 changed files with 46295 additions and 15 deletions

View file

@ -0,0 +1,27 @@
{% extends "./base_site.html" %}
{% load i18n static %}
{% block coltype %}colMS{% endblock %}
{% block bodyclass %}{{ block.super }}{% endblock %}
{% block content %}
<div id="content-main">
<h1>Liste des documents</h1>
<ol>
{% for doc in object_list %}
<li><a href="{% url 'document-detail' doc.id %}">{{doc}}</a></li>
{% empty %}
<li>Aucun document disponible</li>
{% endfor %}
</ol>
</div>
{% endblock %}