X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/66c3143bfd9b7676b3490c9fa73660fa4fff9fc3..0e8fc93b7943f9a8ebe4cf3f9b609ea14685ed65:/wolnelektury/templates/catalogue/breadcrumbs.html?ds=inline diff --git a/wolnelektury/templates/catalogue/breadcrumbs.html b/wolnelektury/templates/catalogue/breadcrumbs.html index ecf8dbafa..5aafeb974 100644 --- a/wolnelektury/templates/catalogue/breadcrumbs.html +++ b/wolnelektury/templates/catalogue/breadcrumbs.html @@ -1,12 +1,24 @@ +{% load i18n %} {% load catalogue_tags %} -<form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form"> - <ol> +<div id="searchContainer"> + <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form"> + <ul class="facelist-selections" style="float:left;"> {% for tag in tag_list %} - <li class="category"><a href="{% catalogue_url tag %}">{{ tag }}</a> | <a href="{% catalogue_url tag_list -tag %}">x</a></li> + <li class="facelist-selection-item"> + <span style="margin-left: 5px;"> + <a href="{% catalogue_url tag %}">{{ tag }}</a> + <a class="facelist-close" href="{% catalogue_url tag_list -tag %}">x</a> + </span> + </li> + {% empty %} + <li class="facelist-selection-item"> + </li> {% endfor %} {% if search_form %} - <li>{{ search_form.q }} {{ search_form.tags }} <input type="submit" value="Szukaj"/></li> + <li>{{ search_form.q }} {{ search_form.tags }}</li> {% endif %} - </ol> - <div class="clearboth"></div> -</form> \ No newline at end of file + </ul> + <input type="submit" value="{% trans "Search" %}" id="searchSubmit"/> + </form> +</div> +<div class="clearboth"></div>