{% load extra_tags %} {% load i18n %} {% load humanize %} {% load extra_filters %} {% load smart_if %} {% load cache %} {% get_current_language as LANGUAGE_CODE %} {% cache 60 questions search_tags scope sort query context.page context.page_size LANGUAGE_CODE %} {% for question in questions.object_list %}
{% if scope == "unanswered" %} {% trans "There are no unanswered questions here" %} {% endif %} {% if scope == "favorite" %} {% trans "No favorite questions here. " %} {% trans "Please start (bookmark) some questions when you visit them" %} {% endif %}
{% if query or search_tags or author_name %}{% trans "You can expand your search by " %} {% ifmany query search_tags author_name %} {% joinitems using ', ' ' or ' %} {% if author_name %} {% trans "resetting author" %} {% endif %} {% separator %} {% if search_tags %} {% trans "resetting tags" %} {% endif %} {% separator %} {% ifmany query search_tags author_name %} {% trans "starting over" %} {% endifmany %} {% endjoinitems %} {% else %} {% trans "starting over" %} {% endifmany %}
{% endif %}{% trans "Please always feel free to ask your question!" %}
{% else %}{% trans "Did not find what you were looking for?" %} {% trans "Please, post your question!" %}
{% endif %}