diff -r 000000000000 -r 40c8f766c9b8 src/cm/templates/site/notifications.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/cm/templates/site/notifications.html Mon Nov 23 15:14:29 2009 +0100 @@ -0,0 +1,89 @@ +{% extends "site/layout/base_workspace.html" %} +{% load com %} +{% load i18n %} +{% load local_perms %} + +{% block title %} +{% blocktrans %}Notifications{% 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 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 comments/replies notifications in discussions where you have participated{% endblocktrans %} + + + +
+
+ + +{% endblock %} +