{% import "macros.html" as macros %} {% if 'SIDEBAR_QUESTION_HEADER'|show_block_to(request.user) %}
{{ settings.SIDEBAR_QUESTION_HEADER }}
{% endif %}

{% trans %}Question tools{% endtrans %}

{% if favorited %}
{% trans %}Following{% endtrans %}
{% trans %}Unfollow{% endtrans %}
{% else %} {%trans %}Follow{%endtrans%} {% endif %}
{% set follower_count = thread.favourite_count %} {% if follower_count > 0 %} {% trans count=follower_count %}{{count}} follower{% pluralize %}{{count}} followers{% endtrans %} {% endif %}
{%if request.user.is_authenticated() %} {%else%} {%endif%} {% if settings.RSS_ENABLED %}

{% trans %}subscribe to rss feed{% endtrans %}

{% endif %}
{% if settings.GROUPS_ENABLED %}
{% if thread.is_private() %}

{% trans %}Invite{% endtrans %}

Invite others to help answer this question

{% csrf_token %}

{% trans %}- or -{% endtrans %}

{% csrf_token %}

{% trans %}- or -{% endtrans %}

{% csrf_token %}
{% set shared_users_count = sharing_info['users'].count() %} {% set shared_groups_count = sharing_info['groups'].count() %} {% if shared_users_count or shared_groups_count %}

{% trans %}This question is currently shared only with:{% endtrans %}

{% endif %}

{% trans %}Individual users{% endtrans %}

{% set comma = joiner(',') %} {{ comma() }}

{% trans %}You{% endtrans -%} {%- if shared_users_count -%} {%- for user in sharing_info['users'] %}{{ comma() }} {{ user.get_profile_link() }} {%- endfor -%} {% endif -%} {%- if sharing_info['more_users_count'] > 0 %} {% trans %}and{% endtrans %} {% trans more_count=sharing_info['more_users_count'] %}{{ more_count }} more{% endtrans %} {% endif %}

{% if shared_groups_count %}

{% trans %}Groups{% endtrans %}

{% set comma = joiner(',') %} {%- for group in sharing_info['groups'] -%}{{ comma() }} {{ macros.user_group_link(group) }} {%- endfor -%} {% if sharing_info['more_groups_count'] > 0 %} {% trans %}and{% endtrans %} {% trans more_count=sharing_info['more_groups_count'] %}{{ more_count }} more{% endtrans %} {% endif %}

{% endif %} {% else %}

{% trans %}Public thread{% endtrans %}

{% trans site_name=settings.APP_SHORT_NAME %}This thread is public, all members of {{ site_name }} can read this page.{% endtrans %}

{% endif %}
{% endif %} {% if settings.SIDEBAR_QUESTION_SHOW_META %}

{% trans %}Stats{% endtrans %}

{% trans %}Asked{% endtrans %}: {{ macros.timeago(question.added_at) }}

{% trans %}Seen{% endtrans %}: {{ thread.view_count|intcomma }} {% trans %}times{% endtrans %}

{% trans %}Last updated{% endtrans %}: {{thread.last_activity_at|diff_date}}

{% endif %} {% if similar_threads.data() and settings.SIDEBAR_QUESTION_SHOW_RELATED %} {#% cache 1800 "related_questions" related_questions question.id language_code %#}

{% trans %}Related questions{% endtrans %}

{#% endcache %#} {% endif %} {% if 'SIDEBAR_QUESTION_FOOTER'|show_block_to(request.user) %}
{{ settings.SIDEBAR_QUESTION_FOOTER }}
{% endif %}