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
26 <table class="form-as-table">
\r
29 <strong>{% trans "Notify me when:" %}</strong>
\r
33 <td>{% trans "A new member joins" %}</td>
\r
34 <td>{{ form.member_joins }}</td>
\r
37 <td>{% trans "A new question is posted" %}</td>
\r
38 <td>{{ form.new_question }}</td>
\r
41 <td>{% trans "A new question matching my interesting tags is posted" %}</td>
\r
42 <td>{{ form.new_question_watched_tags }}</td>
\r
45 <td>{% trans "There's an update on one of my subscriptions" %}</td>
\r
46 <td >{{ form.subscribed_questions }}</td>
\r
50 <table class="form-as-table check-table">
\r
53 <strong>{% trans "Auto subscribe me to:" %}</strong>
\r
58 {{ form.questions_asked }}{% trans "Questions I ask" %}
\r
61 {{ form.questions_answered }}{% trans "Questions I answer" %}
\r
64 {{ form.questions_commented }}{% trans "Questions I comment" %}
\r
69 {{ form.questions_viewed }}{% trans "Questions I view" %}
\r
72 {{ form.all_questions_watched_tags }}{% trans "All questions matching my interesting tags" %}
\r
75 {{ form.all_questions }}{% trans "All questions" %}
\r
80 <table class="form-as-table check-table">
\r
83 <strong>{% trans "On my subscriptions, notify me when:" %}</strong>
\r
88 {{ form.notify_answers }}{% trans "An answer is posted" %}
\r
91 {{ form.notify_comments_own_post }}{% trans "A comment on one of my posts is posted" %}
\r
96 {{ form.notify_comments }}{% trans "A comment is posted" %}
\r
99 {{ form.notify_accepted }}{% trans "An answer is accepted" %}
\r
104 <table class="form-as-table check-table">
\r
107 <strong>{% trans "More:" %}</strong>
\r
112 {{ 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
117 {{ form.send_digest }}{% trans "Send me the daily digest with information about the site activity" %}
\r
121 <div class="submit-row">
\r
122 <input type="submit" class="submit" name="save" value="{% trans "Update" %}"/>
\r
123 {% if notificatons_on %}
\r
124 <input type="submit" class="submit" name="notswitch" value="{% trans "Stop notifications" %}"/>
\r
126 <input type="submit" class="submit" name="notswitch" value="{% trans "Start notifications" %}"/>
\r
132 <!-- end user_subscriptions.html -->
\r