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

{% blocktrans %}Feeds{% endblocktrans %}

{% blocktrans %}Public feed{% endblocktrans %} (?)

{{SITE_URL}}{% url public-feed %}
{% blocktrans %}This is the public feed for the workspace.{% endblocktrans %} {% if user.is_authenticated %}
{% if can_manage_workspace %}

{% blocktrans %}Private feed{% endblocktrans %} (?)

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

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

  {% blocktrans %}Subscribe to workspace notifications{% endblocktrans %}
  {% blocktrans %}Subscribe to all replies notifications in discussions where you have participated{% endblocktrans %}
{% endif %}
{% endblock %}