{% extends "base.html" %} {% load extra_tags %} {% load i18n %} {% load humanize %} {% load extra_filters %} {% load smart_if %} {% block title %}{% spaceless %}{% trans "Questions" %}{% endspaceless %}{% endblock %} {% block forejs %} {% endblock %} {% block content %}
{% if author_name or search_tags or query %} {% blocktrans count questions_count as cnt with questions_count|intcomma as q_num %} {{q_num}} question found{% plural %}{{q_num}} questions found{% endblocktrans %} {% else %} {% blocktrans count questions_count as cnt with questions_count|intcomma as q_num %} {{q_num}} question{% plural %}{{q_num}} questions{% endblocktrans %} {% endif %} {% joinitems using ', ' %} {% if author_name %} {% blocktrans %}with {{author_name}}'s contributions{% endblocktrans %} {% endif %} {% separator %} {% if search_tags %} {% trans "tagged" %} "{{ search_tags|join:"\", \"" }}" {% endif %} {% endjoinitems %}
{% if author_name or search_tags or query %}{% trans "Search tips:" %} {% ifmany query search_tags author_name %} {% joinitems using ', ' ' or ' %} {% if author_name %} {% trans "reset author" %} {% endif %} {% separator %} {% if search_tags %} {% trans "reset tags" %} {% endif %} {% separator %} {% ifmany query search_tags author_name %} {% trans "start over" %} {% endifmany %} {% endjoinitems %} {% else %} {% trans "start over" %} {% endifmany %} {% trans " - to expand, or dig in by adding more tags and revising the query." %}
{% else %}{% trans "Search tip:" %} {% trans "add tags and a query to focus your search" %}
{% endif %}{% 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 %}