000625b693d24dc8ddf64f3267c6dae37442b17d
[wolnelektury.git] / wolnelektury / templates / catalogue / breadcrumbs.html
1 {% load i18n %}
2 {% load catalogue_tags %}
3 <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
4     <ol>
5         {% for tag in tag_list %}
6         <li class="category"><a href="{% catalogue_url tag %}">{{ tag }}</a> | <a href="{% catalogue_url tag_list -tag %}">x</a></li>
7         {% endfor %}
8         {% if search_form %}
9             <li>{{ search_form.q }} {{ search_form.tags }} <input type="submit" value="{% trans "Search" %}"/></li>
10         {% endif %}
11     </ol>
12     <div class="clearboth"></div>
13 </form>