This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
fontenay-sous-bois/portail-citoyen/templates/blurps/demandes-en-cours.html

23 lines
487 B
HTML

{% if user.is_authenticated %}
<ul>
<li><h1>Vos demandes en cours</h1>
<ul>
{% for d in demandes %}
{% with url=d.url name=d.form_name date=d.form_receipt_date time=d.form_receipt_time %}
<li><a href="{{ url }}">{{ name }}</a><br />
<small>demande
{% if not d.form_status_is_endpoint %}
du {{date}} à {{time}}
{% else %}
terminée
{% endif %}
</small>
</li>
{% endwith %}
{% empty %}
<li>Vous n'avez pas de demande en cours.</li>
{% endfor %}
</ul>
</li></ul>
{% endif %}