{% extends "main.html" %} {% load static %} {% block title %}Covoiturage{% endblock %} {% block content %}

Covoiturage

{% for message in messages %}
{{ message }}

{% endfor %} {% for annonce in annonces %} {% empty %} {% endfor %}
Départ Destination Places Participation Date de départ
{{ annonce.adresse_depart|linebreaksbr }} {{ annonce.adresse_destination|linebreaksbr }} {{ annonce.places }} {% if annonce.participation %} {{ annonce.participation }} € {% endif %} {{ annonce.date_depart }} Fiche
Aucune annonce.

{% if annonces.has_other_pages %}
{% if annonces.has_previous %} « {% endif %} {% for page_number in annonces.paginator.page_range %} {% if annonces.number == page_number %} {% else %} {{ page_number }} {% endif %} {% endfor %} {% if annonces.has_next %} » {% endif %}
{% endif %}
{% endblock %}