{% set need_scope_links = ( settings.ALL_SCOPE_ENABLED|to_int + settings.UNANSWERED_SCOPE_ENABLED|to_int + (request.user.is_authenticated() and settings.FOLLOWED_SCOPE_ENABLED)|to_int > 1 ) %}
{% 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 %} {% trans %}UNANSWERED{% endtrans %} {% endif %} {% if request.user.is_authenticated() and settings.FOLLOWED_SCOPE_ENABLED %} {% trans %}FOLLOWED{% endtrans %} {% endif %} {% else %}
{% trans %}Please ask your question here{% endtrans %}
{% endif %} {% endif %}