{% import "macros.html" as macros %}
{% for question in questions %} {% if question.favourite_count %} {% if question.favorited_myself %}
{% trans %}thumb-up on{% endtrans %}
{{question.favourite_count|intcomma}}
{% else %}
{% trans %}thumb-up off{% endtrans %}
{{question.favourite_count|intcomma}}
{% endif %} {% else %}
{% endif %}
{{question.score|humanize_counter}}
{% trans cnt=question.score %} vote {% pluralize %} votes {% endtrans %}
{#
#}
{{question.answer_count|humanize_counter}}
{% trans cnt=question.answer_count %} answer {% pluralize %} answers {% endtrans %}
{{question.view_count|humanize_counter}}
{% trans cnt=question.view_count %} view {% pluralize %} views {% endtrans %}

{{question.title|escape}}

{% for tag in question.tagnames|split(' ') %} {% endfor %}
{{question.last_activity_at|diff_date}} {% if question.la_username %} {{question.la_username}} {{ macros.user_score_and_badge_summary( { 'reputation': question.la_user_reputaion, 'gold': question.la_user_gold, 'silver': question.la_user_silver, 'bronze': question.la_user_bronze, } ) }} {% endif %}

{% endfor %}