2 {% load extra_tags %}
\r 
   5 <h2>{% trans "Notifications and subscription settings" %}</h2>
\r 
   8     Here you can decide which types of notifications you wish to receive, and their frequency.<br />
\r 
  11 <div class='inline-block'>
\r 
  12 <form method="POST">
\r 
  15     <table class="form-as-table">
\r 
  18                 <strong>{% trans "Notify me when:" %}</strong>
\r 
  22             <td>{% trans "A new member joins" %}</td>
\r 
  23             <td>{{ form.member_joins }}</td>
\r 
  26             <td>{% trans "A new question is posted" %}</td>
\r 
  27             <td>{{ form.new_question }}</td>
\r 
  30             <td>{% trans "A new question matching my interesting tags is posted" %}</td>
\r 
  31             <td>{{ form.new_question_watched_tags }}</td>
\r 
  34             <td>{% trans "There's an update on one of my subscriptions" %}</td>
\r 
  35             <td >{{ form.subscribed_questions }}</td>
\r 
  39     <table class="form-as-table check-table">
\r 
  42                 <strong>{% trans "Auto subscribe me to:" %}</strong>
\r 
  47                 {{ form.questions_viewed }}{% trans "Questions I view" %}
\r 
  50                 {{ form.all_questions_watched_tags }}{% trans "All questions matching my interesting tags" %}
\r 
  53                 {{ form.all_questions }}{% trans "All questions" %}
\r 
  58     <table class="form-as-table check-table">
\r 
  61                 <strong>{% trans "On my subscriptions, notify me when:" %}</strong>
\r 
  66                 {{ form.notify_answers }}{% trans "An answer is posted" %}
\r 
  69                 {{ form.notify_comments_own_post }}{% trans "A comment on one of my posts is posted" %}
\r 
  74                 {{ form.notify_comments }}{% trans "A comment is posted" %}
\r 
  77                 {{ form.notify_accepted }}{% trans "An answer is accepted" %}
\r 
  82     <table class="form-as-table check-table">
\r 
  85                 <strong>{% trans "Daily Digest:" %}</strong>
\r 
  90                 {{ form.send_digest }}{% trans "Send me the daily digest with information about the site activity" %}
\r 
  95                 <strong>{% trans "Notify When I'm Discussed:" %}</strong>
\r 
 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" %}
\r 
 104     <div class="submit-row">
\r 
 105         <input type="submit" class="submit" name="save" value="{% trans "Update" %}"/>
\r