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.
pratic-themes/portail-citoyen2/templates/breadcrumb.html

10 lines
228 B
HTML

{% for ance in ancestors %}
<li>
{% if not forloop.last %}
<a href="{{ ance.get_absolute_url }}">{{ ance.get_menu_title }}</a>
{% else %}
<span class="active">{{ ance.get_menu_title }}</span>
{% endif %}
</li>
{% endfor %}