]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/users/subscriptions_settings.html
some cleanup on the listing of subscriptions and changing how we fetch the subscriptions
[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     {% if notificatons_on %}\r
11     {% blocktrans %}\r
12     Currently you have notifications enabled. You can always stop all notifications without losing your settings and restart them afterwards.<br />\r
13     {% endblocktrans %}\r
14     {% else %}\r
15     {% blocktrans %}\r
16     Currently you have notifications disabled. You can enable them by clicking on the <strong>Start notifications</strong> button below.<br />\r
17     {% endblocktrans %}\r
18     {% endif %}\r
19 </p>\r
20 <div class='inline-block'>\r
21 <form method="POST">\r
22     {{ form.errors }}\r
23     <table class="form-as-table">\r
24         <tr>\r
25             <td colspan="2">\r
26                 <strong>{% trans "Notify me when:" %}</strong>\r
27             </td>\r
28         </tr>\r
29         <tr>\r
30             <td>{% trans "A new member joins" %}</td>\r
31             <td>{{ form.member_joins }}</td>\r
32         </tr>\r
33         <tr>\r
34             <td>{% trans "A new question is posted" %}</td>\r
35             <td>{{ form.new_question }}</td>\r
36         </tr>\r
37         <tr>\r
38             <td>{% trans "A new question matching my interesting tags is posted" %}</td>\r
39             <td>{{ form.new_question_watched_tags }}</td>\r
40         </tr>\r
41         <tr>\r
42             <td>{% trans "There's an update on one of my subscriptions" %}</td>\r
43             <td >{{ form.subscribed_questions }}</td>\r
44         </tr>\r
45     </table>\r
46     <p>&nbsp;</p>\r
47     <table class="form-as-table check-table">\r
48         <tr>\r
49             <td colspan="3">\r
50                 <strong>{% trans "Auto subscribe me to:" %}</strong>\r
51             </td>\r
52         </tr>\r
53         <tr>\r
54             <td>\r
55                 {{ form.questions_asked }}{% trans "Questions I ask" %}\r
56             </td>\r
57             <td>\r
58                 {{ form.questions_answered }}{% trans "Questions I answer" %}\r
59             </td>\r
60             <td>\r
61                 {{ form.questions_commented }}{% trans "Questions I comment" %}\r
62             </td>\r
63         </tr>\r
64         <tr>\r
65             <td>\r
66                 {{ form.questions_viewed }}{% trans "Questions I view" %}\r
67             </td>\r
68             <td>\r
69                 {{ form.all_questions_watched_tags }}{% trans "All questions matching my interesting tags" %}\r
70             </td>\r
71             <td>\r
72                 {{ form.all_questions }}{% trans "All questions" %}\r
73             </td>\r
74         </tr>\r
75     </table>\r
76     <p>&nbsp;</p>\r
77     <table class="form-as-table check-table">\r
78         <tr>\r
79             <td colspan="2">\r
80                 <strong>{% trans "On my subscriptions, notify me when:" %}</strong>\r
81             </td>\r
82         </tr>\r
83         <tr>\r
84             <td>\r
85                 {{ form.notify_answers }}{% trans "An answer is posted" %}\r
86             </td>\r
87             <td>\r
88                 {{ form.notify_comments_own_post }}{% trans "A comment on one of my posts is posted" %}\r
89             </td>\r
90         </tr>\r
91         <tr>\r
92             <td>\r
93                 {{ form.notify_comments }}{% trans "A comment is posted" %}\r
94             </td>\r
95             <td>\r
96                 {{ form.notify_accepted }}{% trans "An answer is accepted" %}\r
97             </td>\r
98         </tr>\r
99     </table>\r
100     <p>&nbsp;</p>\r
101     <table class="form-as-table check-table">\r
102         <tr>\r
103             <td>\r
104                 <strong>{% trans "More:" %}</strong>\r
105             </td>\r
106         </tr>\r
107         <tr>\r
108             <td>\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
110             </td>\r
111         </tr>\r
112         <tr>\r
113             <td>\r
114                 {{ form.send_digest }}{% trans "Send me the daily digest with information about the site activity" %}\r
115             </td>\r
116         </tr>\r
117     </table>\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
122         {% else %}\r
123         <input type="submit" class="submit" name="notswitch" value="{% trans "Start notifications" %}"/>\r
124         {% endif %}\r
125     </div>\r
126 </form>\r
127 </div>\r