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
11 <div class='inline-block'>
\r
12 <form method="POST">
\r
14 <table class="form-as-table">
\r
17 <strong>{% trans "Notify me when:" %}</strong>
\r
21 <td>{% trans "A new member joins" %}</td>
\r
22 <td>{{ form.member_joins }}</td>
\r
25 <td>{% trans "A new question is posted" %}</td>
\r
26 <td>{{ form.new_question }}</td>
\r
29 <td>{% trans "A new question matching my interesting tags is posted" %}</td>
\r
30 <td>{{ form.new_question_watched_tags }}</td>
\r
33 <td>{% trans "There's an update on one of my subscriptions" %}</td>
\r
34 <td >{{ form.subscribed_questions }}</td>
\r
38 <table class="form-as-table check-table">
\r
41 <strong>{% trans "Auto subscribe me to:" %}</strong>
\r
46 {{ form.questions_viewed }}{% trans "Questions I view" %}
\r
49 {{ form.all_questions_watched_tags }}{% trans "All questions matching my interesting tags" %}
\r
52 {{ form.all_questions }}{% trans "All questions" %}
\r
57 <table class="form-as-table check-table">
\r
60 <strong>{% trans "On my subscriptions, notify me when:" %}</strong>
\r
65 {{ form.notify_answers }}{% trans "An answer is posted" %}
\r
68 {{ form.notify_comments_own_post }}{% trans "A comment on one of my posts is posted" %}
\r
73 {{ form.notify_comments }}{% trans "A comment is posted" %}
\r
76 {{ form.notify_accepted }}{% trans "An answer is accepted" %}
\r
81 <table class="form-as-table check-table">
\r
84 <strong>{% trans "Daily Digest:" %}</strong>
\r
89 {{ form.send_digest }}{% trans "Send me the daily digest with information about the site activity" %}
\r
94 <strong>{% trans "Notify When I'm Discussed:" %}</strong>
\r
99 {{ 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
103 <div class="submit-row">
\r
104 <input type="submit" class="submit" name="save" value="{% trans "Update" %}"/>
\r