eds/templates/cms/document_list.html

22 lines
477 B
HTML
Raw Normal View History

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">
<h1>Liste des documents</h1>
<ol>
{% for doc in object_list %}
2017-04-21 20:44:56 +02:00
<li><a href="{% url 'document-detail' doc.id %}">{{ doc }}</a></li>
2017-04-07 09:17:20 +02:00
{% endfor %}
2017-04-19 18:49:49 +02:00
{% for fic in upload %}
2017-04-25 21:07:48 +02:00
<li><a href="{% url 'upload-detail' fic.id %}">{{ fic.titre }}</a></li>
2017-04-19 18:49:49 +02:00
{% endfor %}
2017-04-07 09:17:20 +02:00
</ol>
</div>
{% endblock %}