{% 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 searchtag %} {% trans "Found by tags" %} {% else %} {% if searchtitle %} {% if settings.USE_SPHINX_SEARCH %} {% trans "Search results" %} {% else %} {% trans "Found by title" %} {% endif %} {% else %} {% if is_unanswered %} {% trans "Unanswered questions" %} {% else %} {% trans "All questions" %} {% endif %} {% endif %} {% endif %}
{% trans "newest" %} {% trans "active" %} {% trans "hottest" %} {% trans "most voted" %}
{% for question in questions.object_list %}
{{question.score|intcomma}}
{% trans "votes" %}
{{question.answer_count|intcomma}}
{% trans "answers" %}
{{question.view_count|cnprog_intword|safe}}
{% trans "views" %}

{{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.tagname_list %} {% endfor %}
{% endfor %} {% if searchtitle %} {% if questions_count == 0 %}

{% trans "Did not find anything?" %} {% else %}

{% trans "Did not find what you were looking for?" %} {% endif %} {% trans "Please, post your question!" %}

{% endif %}
{% endblock %} {% block tail %}
{% cnprog_paginator context %}
{% cnprog_pagesize context %}
{% endblock %} {% block sidebar %}
{% if searchtag %} {% blocktrans count questions_count as cnt with questions_count|intcomma as q_num and searchtag as tagname %} have total {{q_num}} questions tagged {{tagname}} {% plural %} have total {{q_num}} questions tagged {{tagname}} {% endblocktrans %} {% else %} {% if searchtitle %} {% if settings.USE_SPHINX_SEARCH %} {% blocktrans count questions_count as cnt with questions_count|intcomma as q_num %} have total {{q_num}} questions containing {{searchtitle}} in full text {% plural %} have total {{q_num}} questions containing {{searchtitle}} in full text {% endblocktrans %} {% else %} {% blocktrans count questions_count as cnt with questions_count|intcomma as q_num %} have total {{q_num}} questions containing {{searchtitle}} {% plural %} have total {{q_num}} questions containing {{searchtitle}} {% endblocktrans %} {% endif %} {% else %} {% if is_unanswered %} {% blocktrans count questions as cnt with questions_count|intcomma as q_num %} have total {{q_num}} unanswered questions {% plural %} have total {{q_num}} unanswered questions {% endblocktrans %} {% else %} {% blocktrans count questions as cnt with questions_count|intcomma as q_num %} have total {{q_num}} question {% plural %} have total {{q_num}} questions {% endblocktrans %} {% endif %} {% endif %} {% endif %}

{% ifequal tab_id "latest" %} {% trans "latest questions info" %} {% endifequal %} {% ifequal tab_id "active" %} {% trans "Questions are sorted by the time of last update." %} {% trans "Most recently answered ones are shown first." %} {% endifequal %} {% ifequal tab_id "hottest" %} {% trans "Questions sorted by number of responses." %} {% trans "Most answered questions are shown first." %} {% endifequal %} {% ifequal tab_id "mostvoted" %} {% trans "Questions are sorted by the number of votes." %} {% trans "Most voted questions are shown first." %} {% endifequal %}

{% if request.user.is_authenticated %} {% include "tag_selector.html" %} {% endif %}

{% trans "Related tags" %}

{% for tag in tags %} × {{ tag.used_count|intcomma }}
{% endfor %}
{% endblock %}