forked from ScoDoc/ScoDoc
15 lines
438 B
HTML
15 lines
438 B
HTML
{# -*- mode: jinja-html -*- #}
|
|
{% extends 'base.html' %}
|
|
|
|
{% block app_content %}
|
|
<div class="container">
|
|
<h1>Offres expirées - {{ entreprise.nom }}</h1>
|
|
{% if offres_expirees %}
|
|
{% for offre in offres_expirees %}
|
|
{% include 'entreprises/_offre.html' %}
|
|
{% endfor %}
|
|
{% else %}
|
|
<div>Aucune offre expirées</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %} |