2 {% load extra_tags %}
\r
5 <h2>{% trans "Notifications and subscription settings" %}</h2>
\r
8 Here you can decide which types of notifications you wish to receive, and their frequency.<br />
\r
10 {% if notificatons_on %}
\r
12 Currently you have notifications enabled. You can always stop all notifications without losing your settings and restart them afterwards.<br />
\r
16 Currently you have notifications disabled. You can enable them by clicking on the <strong>Start notifications</strong> button below.<br />
\r
20 <div class='inline-block'>
\r
21 <form method="POST">
\r
23 <table class="form-as-table">
\r
26 <strong>{% trans "Notify me when:" %}</strong>
\r
30 <td>{% trans "A new member joins" %}</td>
\r
31 <td>{{ form.member_joins }}</td>
\r
34 <td>{% trans "A new question is posted" %}</td>
\r
35 <td>{{ form.new_question }}</td>
\r
38 <td>{% trans "A new question matching my interesting tags is posted" %}</td>
\r
39 <td>{{ form.new_question_watched_tags }}</td>
\r
42 <td>{% trans "There's an update on one of my subscriptions" %}</td>
\r
43 <td >{{ form.subscribed_questions }}</td>
\r
47 <table class="form-as-table check-table">
\r
50 <strong>{% trans "Auto subscribe me to:" %}</strong>
\r
55 {{ form.questions_asked }}{% trans "Questions I ask" %}
\r
58 {{ form.questions_answered }}{% trans "Questions I answer" %}
\r
61 {{ form.questions_commented }}{% trans "Questions I comment" %}
\r
66 {{ form.questions_viewed }}{% trans "Questions I view" %}
\r
69 {{ form.all_questions_watched_tags }}{% trans "All questions matching my interesting tags" %}
\r
72 {{ form.all_questions }}{% trans "All questions" %}
\r
77 <table class="form-as-table check-table">
\r
80 <strong>{% trans "On my subscriptions, notify me when:" %}</strong>
\r
85 {{ form.notify_answers }}{% trans "An answer is posted" %}
\r
88 {{ form.notify_comments_own_post }}{% trans "A comment on one of my posts is posted" %}
\r
93 {{ form.notify_comments }}{% trans "A comment is posted" %}
\r
96 {{ form.notify_accepted }}{% trans "An answer is accepted" %}
\r
101 <table class="form-as-table check-table">
\r
104 <strong>{% trans "More:" %}</strong>
\r
109 {{ 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
114 {{ form.send_digest }}{% trans "Send me the daily digest with information about the site activity" %}
\r
118 <div class="submit-row">
\r
119 <input type="submit" class="submit" name="save" value="{% trans "Update" %}"/>
\r
120 {% if notificatons_on %}
\r
121 <input type="submit" class="submit" name="notswitch" value="{% trans "Stop notifications" %}"/>
\r
123 <input type="submit" class="submit" name="notswitch" value="{% trans "Start notifications" %}"/>
\r