{% extends "appli_offre/base.html" %}
{% load crispy_forms_tags %}
{% load pagination_tags %}
{% block body %}
{% autopaginate annonces 10 %}
{% paginate %}
{% for annonce in annonces %}
{% include "appli_offre/annonce.html" %}
{% endfor %}
{% paginate %}
{% endblock %}