{% set authenticated = request.user.is_authenticated() %}
{% if authenticated %}
{% set is_watching = c.id in request.amo_user.watching %}
{% set watch_msg = _('Stop Following') if is_watching else
_('Follow this Collection') %}
{{ watch_msg if not condensed }}
{% endif %}
{{ sharing_widget(c, condensed=condensed) }}
{% if authenticated %}
{#
#}
{% if request.check_ownership(c, require_owner=False) and condensed %}
{% endif %}
{% if waffle.switch('collection-stats') and c.can_view_stats(request) %}
{{ _('Statistics') if not condensed }}
{% endif %}
{% endif %}