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 it's frequency.<br />
\r 
  13         {% if notificatons_on %}
\r 
  15         Currently you have notifications enabled. You can always stop all notifications without loosing your settings and restart them afterwards.<br />
\r 
  19         Currently you have notifications disabled. You can enable them clicking on the <strong>Start notifications</strong> button bellow.<br />
\r 
  23     <div class='inline-block'>
\r 
  24     <form method="POST">
\r 
  25         <table class="form-as-table">
\r 
  28                     <strong>{% trans "Notify me when:" %}</strong>
\r 
  32                 <td>{% trans "A new member joins" %}</td>
\r 
  33                 <td>{{ form.member_joins }}</td>
\r 
  36                 <td>{% trans "A new question is posted" %}</td>
\r 
  37                 <td>{{ form.new_question }}</td>
\r 
  40                 <td>{% trans "A new question matching my interesting tags is posted" %}</td>
\r 
  41                 <td>{{ form.new_question_watched_tags }}</td>
\r 
  44                 <td>{% trans "There's an update on one of my subscriptions" %}</td>
\r 
  45                 <td >{{ form.subscribed_questions }}</td>
\r 
  49         <table class="form-as-table check-table">
\r 
  52                     <strong>{% trans "Auto subscribe me to:" %}</strong>
\r 
  57                     {{ form.questions_asked }}{% trans "Questions I ask" %}
\r 
  60                     {{ form.questions_answered }}{% trans "Questions I answer" %}
\r 
  63                     {{ form.questions_commented }}{% trans "Questions I comment" %}
\r 
  68                     {{ form.questions_viewed }}{% trans "Questions I view" %}
\r 
  71                     {{ form.all_questions_watched_tags }}{% trans "All questions matching my interesting tags" %}
\r 
  74                     {{ form.all_questions }}{% trans "All questions" %}
\r 
  79         <table class="form-as-table check-table">
\r 
  82                     <strong>{% trans "On my subscriptions, notify me when:" %}</strong>
\r 
  87                     {{ form.notify_answers }}{% trans "An answer is posted" %}
\r 
  90                     {{ form.notify_comments_own_post }}{% trans "A comment on one of my posts is posted" %}
\r 
  95                     {{ form.notify_comments }}{% trans "A comment is posted" %}
\r 
  98                     {{ form.notify_accepted }}{% trans "An answer is accepted" %}
\r 
 103         <table class="form-as-table check-table">
\r 
 106                     <strong>{% trans "More:" %}</strong>
\r 
 111                     {{ form.notify_reply_to_comments }}{% trans "Notify me when someone replys to one of my comments on any post using the <pre>@username</pre> notation" %}
\r 
 115         <div class="submit-row">
\r 
 116             <input type="submit" class="submit" name="save" value="{% trans "Update" %}"/>
\r 
 117             {% if notificatons_on %}
\r 
 118             <input type="submit" class="submit" name="notswitch" value="{% trans "Stop notifications" %}"/>
\r 
 120             <input type="submit" class="submit" name="notswitch" value="{% trans "Start notifications" %}"/>            
\r 
 126 <!-- end user_subscriptions.html -->
\r