2022-01-24 19:02:16 +01:00
|
|
|
{# -*- mode: jinja-html -*- #}
|
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block app_content %}
|
|
|
|
<div class="container">
|
2022-01-26 18:42:48 +01:00
|
|
|
<h1>Offres expirées de {{ entreprise.nom }}</h1>
|
|
|
|
{% if offres_expirees %}
|
|
|
|
{% for offre in offres_expirees%}
|
|
|
|
Offre {{loop.index}} (ajouté le {{offre[0].date_ajout.strftime('%d/%m/%Y') }})
|
|
|
|
{% include 'entreprises/_offre.html' %}
|
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<div>Aucune offre expirées</div>
|
|
|
|
{% endif %}
|
2022-01-24 19:02:16 +01:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|