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