{% from "macros.html" import user_country_flag, tag_list_widget %}
{{thread.view_count|humanize_counter}}
{% trans cnt=thread.view_count %}view{% pluralize %}views{% endtrans %}
{{thread.answer_count|humanize_counter}}{% if thread.accepted_answer_id %}{% endif %}
{% trans cnt=thread.answer_count %}answer{% pluralize %}answers{% endtrans %}
{{question.score|humanize_counter}}
{% trans cnt=question.score %}vote{% pluralize %}votes{% endtrans %}
{# We have to kill microseconds below because InnoDB doesn't support them and all kinds of funny things happen in unit tests #}
{{ thread.last_activity_at|diff_date }}
{% if question.is_anonymous %}
{{ thread.last_activity_by.get_anonymous_name() }}
{% else %}
{{thread.last_activity_by.username}} {{ user_country_flag(thread.last_activity_by) }}
{#{user_score_and_badge_summary(thread.last_activity_by)}#}
{% endif %}