2017-04-07 09:17:20 +02:00
|
|
|
{% extends "./base_site.html" %}
|
|
|
|
|
{% load i18n static %}
|
|
|
|
|
{% block coltype %}colMS{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block bodyclass %}{{ block.super }}{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
|
|
<div id="content-main">
|
2017-08-13 22:58:46 +02:00
|
|
|
<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>
|
2017-04-07 09:17:20 +02:00
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|