eds/templates/cms/uploaddoc_list.html

23 lines
605 B
HTML
Raw Normal View History

2018-02-16 11:14:31 +01:00
{% extends "./base_site.html" %}
{% load i18n static %}
{% block content %}
<div id="content-main">
2018-05-23 21:16:25 +02:00
<div style="margin:auto;width:60%;">
<h1>Documents en téléchargement</h1>
{% if object_list %}
<ul class="liste-verticale">
{% for upload in object_list %}
<li><a href="{{ upload.docfile.url }}">{{ upload.titre }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No documents.</p>
{% endif %}
</div>
2018-02-16 11:14:31 +01:00
</div>
{% endblock %}