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.
montpellier-themes/templates/combo/wcs/current_forms.html

16 lines
524 B
HTML

<h2>Mes démarches en cours</h2>
<p>Cliquez sur une de vos démarches en cours pour en afficher le détail.</p>
{% for slug, forms in current_forms.iteritems %}
<div class="current-forms-{{ slug }}">
{% if forms.data %}
<ul>
{% for data in forms.data|dictsortreversed:"form_receipt_date" %}
{% if data.url and data.title and not data.form_status_is_endpoint %}
<li><a href="{{ data.url }}">{{ data.name }} ({{data.status}})</a></li>
{% endif %}
{% endfor %}
</ul>
{% endif %}
</div>
{% endfor %}