{% if need_scope_links %}
{% if active_tab != "ask" %}
{% if not search_state %} {# get empty SearchState() if there's none #}
{% set search_state=search_state|get_empty_search_state %}
{% endif %}
{% if settings.ALL_SCOPE_ENABLED %}
{% trans %}ALL{% endtrans %}
{% endif %}
{% if settings.UNANSWERED_SCOPE_ENABLED %}
{{ settings.WORDS_UNANSWERED|escape }}
{% endif %}
{% if request.user.is_authenticated and settings.FOLLOWED_SCOPE_ENABLED %}
{% trans %}FOLLOWED{% endtrans %}
{% endif %}
{% else %}
{{ settings.WORDS_PLEASE_ASK_YOUR_QUESTION_HERE|escape }}
{% endif %}
{% endif %}