Added some simple tables for searching, subcategories and tags.

This commit is contained in:
Jan Böhmer 2019-09-05 22:27:18 +02:00
parent f402145c51
commit 4c5b5b6df0
4 changed files with 79 additions and 27 deletions

View file

@ -50,7 +50,7 @@
{% macro string_to_tags(string, class="badge badge-info") %}
{% for tag in string|split(',') %}
<a href="#" class="{{ class }}" >{{ tag | trim }}</a>
<a href="{{ url('part_list_tags', {'tag': tag | trim}) }}" class="{{ class }}" >{{ tag | trim }}</a>
{% endfor %}
{% endmacro %}