]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/users/subscriptions_settings.html
Migrate to Django 1.6
[osqa.git] / forum / skins / default / templates / users / subscriptions_settings.html
1 {% load i18n %}
2 {% load extra_tags %}
3 {% load humanize %}
4
5 <h2>{% trans "Notifications and subscription settings" %}</h2>
6 <p class="message">
7     {% blocktrans %}
8     Here you can decide which types of notifications you wish to receive, and their frequency.<br />
9     {% endblocktrans %}
10 </p>
11 <div class='inline-block'>
12 <form method="POST">
13     {% csrf_token %}
14     {{ form.errors }}
15     <table class="form-as-table">
16         <tr>
17             <td colspan="2">
18                 <strong>{% trans "Notify me when:" %}</strong>
19             </td>
20         </tr>
21         <tr>
22             <td>{% trans "A new member joins" %}</td>
23             <td>{{ form.member_joins }}</td>
24         </tr>
25         <tr>
26             <td>{% trans "A new question is posted" %}</td>
27             <td>{{ form.new_question }}</td>
28         </tr>
29         <tr>
30             <td>{% trans "A new question matching my interesting tags is posted" %}</td>
31             <td>{{ form.new_question_watched_tags }}</td>
32         </tr>
33         <tr>
34             <td>{% trans "There's an update on one of my subscriptions" %}</td>
35             <td >{{ form.subscribed_questions }}</td>
36         </tr>
37     </table>
38     <p>&nbsp;</p>
39     <table class="form-as-table check-table">
40         <tr>
41             <td colspan="3">
42                 <strong>{% trans "Auto subscribe me to:" %}</strong>
43             </td>
44         </tr>
45         <tr>
46             <td>
47                 {{ form.questions_viewed }}{% trans "Questions I view" %}
48             </td>
49             <td>
50                 {{ form.all_questions_watched_tags }}{% trans "All questions matching my interesting tags" %}
51             </td>
52             <td>
53                 {{ form.all_questions }}{% trans "All questions" %}
54             </td>
55         </tr>
56     </table>
57     <p>&nbsp;</p>
58     <table class="form-as-table check-table">
59         <tr>
60             <td colspan="2">
61                 <strong>{% trans "On my subscriptions, notify me when:" %}</strong>
62             </td>
63         </tr>
64         <tr>
65             <td>
66                 {{ form.notify_answers }}{% trans "An answer is posted" %}
67             </td>
68             <td>
69                 {{ form.notify_comments_own_post }}{% trans "A comment on one of my posts is posted" %}
70             </td>
71         </tr>
72         <tr>
73             <td>
74                 {{ form.notify_comments }}{% trans "A comment is posted" %}
75             </td>
76             <td>
77                 {{ form.notify_accepted }}{% trans "An answer is accepted" %}
78             </td>
79         </tr>
80     </table>
81     <p>&nbsp;</p>
82     <table class="form-as-table check-table">
83         <tr>
84             <td>
85                 <strong>{% trans "Daily Digest:" %}</strong>
86             </td>
87         </tr>
88         <tr>
89             <td>
90                 {{ form.send_digest }}{% trans "Send me the daily digest with information about the site activity" %}
91             </td>
92         </tr>
93         <tr>
94             <td>
95                 <strong>{% trans "Notify When I'm Discussed:" %}</strong>
96             </td>
97         </tr>
98         <tr>
99             <td>
100                 {{ 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" %}
101             </td>
102         </tr>
103     </table>
104     <div class="submit-row">
105         <input type="submit" class="submit" name="save" value="{% trans "Update" %}"/>
106     </div>
107 </form>
108 </div>