You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
409 B

{% load i18n %}
{% load template_filters %}
<div class="bread-crumbs">
<a href="/">{% trans 'Главная страница' %}</a>
{% for item in filter %}
{% if forloop.counter == filter|length%}
<strong>{{ item.name|safe }}</strong>
{% else %}
<a href="/{{ filter|generate_url:item.type }}">{{ item.name|safe }}</a>
{% endif %}
{% endfor %}
</div>