{# 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', search_state = search_state ) }} {# 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', search_state = search_state ) }} {# todo: add this via javascript "remove '%(tag_name)s' from the list of ignored tags"| format(tag_name = tag_name) #}
{% if settings.SUBSCRIBED_TAG_SELECTOR_ENABLED %}

{% trans %}Subscribed tags{% endtrans %}

{{ macros.tag_list_widget( subscribed_tag_names, deletable = True, css_class = 'subscribed marked-tags', search_state = search_state ) }} {# todo: add this via javascript "remove '%(tag_name)s' from the list of ignored tags"| format(tag_name = tag_name) #}
{% endif %}

{% trans %}Show only questions from{% endtrans%}

{{ macros.radio_select( name = "display_tag_filter_strategy", value = request.user.display_tag_filter_strategy, choices = display_tag_filter_strategy_choices ) }}
{% if settings.SUBSCRIBED_TAG_SELECTOR_ENABLED %}

{% trans %}Send me email alerts for{% endtrans%}

{{ macros.radio_select( name = "email_tag_filter_strategy", value = request.user.email_tag_filter_strategy, choices = email_tag_filter_strategy_choices ) }} {% if request.user.is_authenticated() %}

{% trans %}Change frequency of emails{% endtrans %}

{% endif %}
{% endif %}