comparison gpp/templates/forums/subscription_status.html @ 181:500e5875a306

Implementing #61: adding a forum topic subscription feature.
author Brian Neal <bgneal@gmail.com>
date Sun, 28 Mar 2010 01:07:47 +0000
parents
children 593fb6dbd449
comparison
equal deleted inserted replaced
180:aef00df91165 181:500e5875a306
1 {% extends 'base.html' %}
2 {% block title %}Forums: {% if is_subscribed %}S{% else %}Uns{% endif %}ubscribed to Topic{% endblock %}
3 {% block content %}
4 <h2>Forums: {% if is_subscribed %}S{% else %}Uns{% endif %}ubscribed to Topic</h2>
5
6 <h3>
7 <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> &raquo;
8 <a href="{% url forums-forum_index slug=topic.forum.slug %}">{{ topic.forum.name }}</a> &raquo;
9 <a href="{% url forums-topic_index id=topic.id %}">{{ topic.name }}</a>
10 </h3>
11 <p>
12 {% if is_subscribed %}
13 You are now subscribed to the forum topic <a href="{{ topic.get_absolute_url }}">{{ topic.name }}</a>.
14 You will receive an email notification whenever a new reply is posted.
15 {% else %}
16 You have successfully unsubscribed to the forum topic <a href="{{ topic.get_absolute_url }}">{{ topic.name }}</a>.
17 You will no longer receive emails when new replies are posted.
18 {% endif %}
19 </p>
20 <p>
21 To manage all your forum topic subscriptions, please visit your
22 <a href="{% url forums-manage_subscriptions %}">subscriptions page</a>.
23 </p>
24 {% endblock %}