{% extends "skeleton.html" %} {% block base_content %}

Ressources

{% for ressource in object_list %}

{{ ressource.name }}

{% if ressource.description %}

{{ ressource.description|safe|linebreaksbr }}

{% endif %} {% if ressource.media_url %}

{% if ressource.button_label %} {{ ressource.button_label }} {% else %} See on website {% endif %}

{% endif %}
{% if ressource.author %}

{{ ressource.author }}

{% endif %}

{{ ressource.ressource_date }}

{% if not forloop.last %}
{% endif %} {% endfor %}

{% if page_obj.has_previous %} previous {% endif %}

Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}

{% if page_obj.has_next %} next {% endif %}

{% endblock %}