PDF_periodes

This commit is contained in:
alazo 2017-08-13 22:58:46 +02:00
parent 7b04443965
commit d9d4fd7879
31 changed files with 1175 additions and 999 deletions

View file

@ -7,15 +7,14 @@
{% 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>
{% endfor %}
{% for fic in upload %}
<li><a href="{% url 'upload-detail' fic.id %}">{{ fic.titre }}</a></li>
{% endfor %}
</ol>
<h1>Liste des documents</h1>
<ol>
{% for doc in object_list %}
<li><a href="{% url 'document-detail' doc.id %}">{{ doc }}</a></li>
{% endfor %}
{% for fic in upload %}
<li><a href="{% url 'upload-detail' fic.id %}">{{ fic.titre }}</a></li>
{% endfor %}
</ol>
</div>
{% endblock %}