{% load remote %} {% for doc in article.attachments.all %}
Document à télécharger : {% if not doc.title %}{{ doc.name }}{% else %}{{ doc.title }}{% endif %}
{% endfor %} {% for link in article.external_links.all %} {% endfor %}
{% if article.dated.all %} {% for dated in article.dated.all %}
Date{{ dated.event.occurrence_set.all|pluralize }} agenda
{% for o in dated.event.occurrence_set.all %} {{ o.start_time|date:"j F Y, \d\e H\hi" }} à {{ o.end_time|date:"H\hi" }}
{% endfor %}
{% endfor %}
{% endif %} {% if article.display_dates %}
Date de publication
{{ article.created|date:"j F Y" }}
Dernière mise à jour
{{ article.modified|date:"j F Y" }}
{% endif %} {% if article.person or article.remote_person_label %}
Auteur
{% local_or_remote uri article person as author_uri %} {% local_or_remote label article person as author_label %}
{% endif %} {% if article.organization or article.remote_organization_label %}
Structure
{% local_or_remote uri article organization as org_uri %} {% local_or_remote label article organization as org_label %}
{% endif %} {% if article.tags.all %}
Mots-clés
{% for tag in article.tags.all %} {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}