1 {% extends "user.html" %}
\r
2 <!-- user_subscriptions.html -->
\r
4 {% load extra_tags %}
\r
7 {% block usercontent %}
\r
8 <h2>{% trans "Notifications and subscription settings" %}</h2>
\r
11 Here you can decide which types of notifications you wish to receive, and their frequency.<br />
\r
13 {% if notificatons_on %}
\r
15 Currently you have notifications enabled. You can always stop all notifications without losing your settings and restart them afterwards.<br />
\r
19 Currently you have notifications disabled. You can enable them by clicking on the <strong>Start notifications</strong> button below.<br />
\r
23 <div class='inline-block'>
\r
24 <form method="POST">
\r
25 <table class="form-as-table">
\r
28 <strong>{% trans "Notify me when:" %}</strong>
\r
32 <td>{% trans "A new member joins" %}</td>
\r
33 <td>{{ form.member_joins }}</td>
\r
36 <td>{% trans "A new question is posted" %}</td>
\r
37 <td>{{ form.new_question }}</td>
\r
40 <td>{% trans "A new question matching my interesting tags is posted" %}</td>
\r
41 <td>{{ form.new_question_watched_tags }}</td>
\r
44 <td>{% trans "There's an update on one of my subscriptions" %}</td>
\r
45 <td >{{ form.subscribed_questions }}</td>
\r
49 <table class="form-as-table check-table">
\r
52 <strong>{% trans "Auto subscribe me to:" %}</strong>
\r
57 {{ form.questions_asked }}{% trans "Questions I ask" %}
\r
60 {{ form.questions_answered }}{% trans "Questions I answer" %}
\r
63 {{ form.questions_commented }}{% trans "Questions I comment" %}
\r
68 {{ form.questions_viewed }}{% trans "Questions I view" %}
\r
71 {{ form.all_questions_watched_tags }}{% trans "All questions matching my interesting tags" %}
\r
74 {{ form.all_questions }}{% trans "All questions" %}
\r
79 <table class="form-as-table check-table">
\r
82 <strong>{% trans "On my subscriptions, notify me when:" %}</strong>
\r
87 {{ form.notify_answers }}{% trans "An answer is posted" %}
\r
90 {{ form.notify_comments_own_post }}{% trans "A comment on one of my posts is posted" %}
\r
95 {{ form.notify_comments }}{% trans "A comment is posted" %}
\r
98 {{ form.notify_accepted }}{% trans "An answer is accepted" %}
\r
103 <table class="form-as-table check-table">
\r
106 <strong>{% trans "More:" %}</strong>
\r
111 {{ form.notify_reply_to_comments }}{% trans "Notify me when someone replies to one of my comments on any post using the <pre>@username</pre> notation" %}
\r
116 {{ form.send_digest }}{% trans "Send me the daily digest with information about the site activity" %}
\r
120 <div class="submit-row">
\r
121 <input type="submit" class="submit" name="save" value="{% trans "Update" %}"/>
\r
122 {% if notificatons_on %}
\r
123 <input type="submit" class="submit" name="notswitch" value="{% trans "Stop notifications" %}"/>
\r
125 <input type="submit" class="submit" name="notswitch" value="{% trans "Start notifications" %}"/>
\r
132 <!-- end user_subscriptions.html -->
\r