{% load i18n %}
{% load watches_tags %}
{% if ENABLE_NOTICES and request.user.is_authenticated %}
{% if obj.is_project %}
{% if obj.is_watched %}
{% trans "Stop watching project" %}
{% else %}
{% trans "Watch project" %}
{% endif %}
{% else %}
{% endif %}
{% endif %}