{% load remote %}
{% 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 %}
Date de publication
{{ article.created|date:"j F Y" }}
Dernière mise à jour
{{ article.modified|date:"j F Y" }}
{% 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 %}
{% if author_uri %}{% endif %} {{ author_label }} {% if author_uri %}{% endif %}
{% endif %} {% if article.organization or article.remote_organization_label %}
Auteur
{% local_or_remote uri article organization as org_uri %} {% local_or_remote label article organization as org_label %}
{% if org_uri %}{% endif %} {{ org_label }} {% if org_uri %}{% endif %}
{% endif %} {% if article.tags.all %}
Mots-clés
{% for tag in article.tags.all %} {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}