{% 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 %}
{{question.score|humanize_counter}}
{% blocktrans count question.score as cnt %}vote{% plural %}votes{% endblocktrans %}
{% comment %}
{% endcomment %}
{{question.answer_count|humanize_counter}}
{% blocktrans count question.answer_count as cnt %}answer{% plural %}answers{% endblocktrans %}
{{question.view_count|humanize_counter}}
{% blocktrans count question.view_count as cnt %}view{% plural %}views{% endblocktrans %}

{{question.title}}

{% diff_date question.last_activity_at %} {% if question.last_activity_by %} {{ question.last_activity_by }} {% get_score_badge question.last_activity_by %} {% endif %}
{% for tag in question.get_tag_names %} {% endfor %}
{% endfor %} {% endcache %} {% comment %}todo: fix css here{% endcomment %} {% if questions_count == 0 %} {% comment %}todo: add tips to widen selection{% endcomment%}

{% 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 %}