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.
portail-citoyen-announces/portail_citoyen_announces/templates/portail_citoyen_announces/announce_list.html

15 lines
441 B
HTML

{% load i18n %}
<dl class="announce-list">
{% for announce in object_list %}
<dt id="{{id_prefix}}{{ announce.pk}} announce-title">
<a href="#{{id_prefix}}{{announce.pk}}">{{ announce.title }}</a>
</dt>
{% if announce.text %}
<dd class="announce-text">{{ announce.text }}</dd>
{% endif %}
{% endfor %}
</dl>
{% if subscriptions %}
<p>{% trans "Subscriptions" %}: {{ subscriptions|join:", " }}</p>
{% endif %}