{# todo - maybe disable navigation from ignored tags here when "hide" is on - with js? #}
{% import "macros.html" as macros %}
{% trans %}Interesting tags{% endtrans %}
{{
macros.tag_list_widget(
interesting_tag_names,
deletable = True,
css_class = 'interesting marked-tags'
)
}}
{# todo - add this via js
"remove '%(tag_name)s' from the list of interesting tags"|
format(tag_name = tag_name)
#}
{% trans %}Ignored tags{% endtrans %}
{{
macros.tag_list_widget(
ignored_tag_names,
deletable = True,
css_class = 'ignored marked-tags'
)
}}
{# todo: add this via javascript
"remove '%(tag_name)s' from the list of ignored tags"|
format(tag_name = tag_name)
#}
{% trans %}Display tag filter{% endtrans%}
{{
macros.radio_select(
name = "display_tag_filter_strategy",
value = request.user.display_tag_filter_strategy,
choices = tag_filter_strategy_choices
)
}}