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/portail-citoyen/templates/blurps/demarches_en_cours.html

13 lines
479 B
HTML

{% if demarches_en_cours %}
<ul class="aq-forms-plg-listing" {% if demarches_en_cours|length <= 1 %}style="-moz-column-count: 1; -webkit-column-count: 1; column-count: 1"{% endif %}>
{% for data in demarches_en_cours %}
{% if data.url and data.title and not data.form_status_is_endpoint %}
<li class="aq-forms-plg-item">
<a class="aq-forms-plg-link"
href="{{ data.url }}">{{ data.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
{% endif %}