{% extends "site/layout/base_text.html" %} {% load com %} {% load i18n %} {% load local_perms %} {% block title %} {% blocktrans %}Text followup{% endblocktrans %} {% endblock %} {% block main %} {% get_local_perm request can_manage_workspace as can_manage_workspace %} {% get_local_perm request can_view_unapproved_comment as can_view_unapproved_comment %}

{% blocktrans %}Feeds{% endblocktrans %}

{% blocktrans %}Public feed{% endblocktrans %}

{{SITE_URL}}{% url text-feed text.key %}
{% blocktrans %}This is the public feed for the text.{% endblocktrans %} {% if user.is_authenticated %}
{% if can_view_unapproved_comment %}

{% blocktrans %}Private feed{% endblocktrans %}

{% if text.private_feed_key %}
{{SITE_URL}}{% url text-private-feed text.key text.private_feed_key %}
{% blocktrans %}This is the private feed for the text. Don't share this address with others unless you want them to see all activities on this text.{% endblocktrans %}
{% else %}
{% blocktrans %}The private feed for this text is not yet activated.{% endblocktrans %} {% endif %} {% endif %}

{% blocktrans %}Email notifications{% endblocktrans %}

{% if workspace_notify_check %} {% blocktrans %}You will receive text notifications because you subscribed to notifications at the workspace level{% endblocktrans %} {% else %}   {% blocktrans %}Subscribe to all text notifications{% endblocktrans %} {% endif %}
{% endif %}
{% endblock %}