{% extends "base.html" %} {% load i18n %} {% load static %} {% load thumbnail %} {% block title %}{{block.super}} > Liste des Renkans publiques{% endblock %} {% block css_import %} {{block.super}} {% endblock %} {% block renkans_actif %}actif{% endblock %} {% block main_content %}

Liste des renkans publiques

{% if page.has_previous %}{% trans 'Previous' %}{% endif %} {% if page.has_previous and page.has_next %} - {% endif %}{% if page.has_next %}{% trans 'Next' %}{% endif %}

{% for hr in page.object_list %} {% with hr.renkan as r %} {% endwith %} {% endfor %}
{% trans 'Title' %} {% if sort_param == 'title' %}{% endif %} {% trans 'Modification date' %} {% if sort_param == 'date' %}{% endif %} PreviewActions
{{ r.title }} {{ r.modification_date|date:"Y-m-d H:i" }} {% thumbnail r.image 100x100 as thumb %}

{% if page.has_previous %}{% trans 'Previous' %}{% endif %} {% if page.has_previous and page.has_next %} - {% endif %}{% if page.has_next %}{% trans 'Next' %}{% endif %}

{% endblock %}