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