{% load extra_tags %} {% load extra_filters %} {% load humanize %} {% load i18n %}
{% for question in questions %} {% if question.favourite_count %} {% if question.favorited_myself %}
{% trans
{{question.favourite_count|intcomma}}
{% else %}
{% trans
{{question.favourite_count|intcomma}}
{% endif %} {% else %}
{% endif %}
{{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}}

{% convert2tagname_list question %} {% for tag in question.tagnames %} {% endfor %}
{% diff_date question.last_activity_at %} {% if question.la_username %} {{question.la_username}} {% get_score_badge_by_details question.la_user_reputation question.la_user_gold question.la_user_silver question.la_user_bronze%} {% endif %}

{% endfor %}