2 {% load i18n extra_tags %}
\r 
   3 <h3 class="subtitle">{% trans "Follow this question" %}</h3>
\r 
   4 <strong>{% trans "By Email" %}:</strong>
\r 
   5 {% if request.user.is_authenticated %}
\r 
   6     <div class="subscription-status">
\r 
   7         {% if subscription %}
\r 
   8             {% if subscription.auto_subscription %}
\r 
   9                 <p>{% trans "You were automatically subscribed to this question." %}</p>
\r 
  11                 <p>{% trans "You are subscribed to this question." %}</p>
\r 
  14             <p>{% trans "You are not subscribed to this question." %}</p>
\r 
  17     <p><a class="ajax-command sidebar_button subscription_switch" href="{% url subscribe_simple id=question.id %}">
\r 
  18         {% if subscription %}
\r 
  19             {% trans "unsubscribe me" %}
\r 
  21             {% trans "subscribe me" %}
\r 
  25         {% blocktrans with request.user.get_user_subscriptions_url as subscriptions_url %}
\r 
  26             (you can adjust your notification settings on your <a href="{{ subscriptions_url }}">profile</a>)
\r 
  30     <p>{% trans "Once you sign in you will be able to subscribe for any updates here" %}</p>
\r 
  32 <strong>{% trans "By RSS" %}:</strong>
\r 
  34     <a class="feed-icon" style="background-image:url('{% media "media/images/feed-icon-small.png" %}');"
\r 
  35         href="{{ question.get_absolute_url }}?type=rss" title="{% trans "subscribe to answers" %}"></a>
\r 
  36     {% trans "Answers" %}
\r 
  39     <a class="feed-icon" style="background-image:url('{% media "media/images/feed-icon-small.png" %}');"
\r 
  40         href="{{ question.get_absolute_url }}?type=rss&comments=yes" title="{% trans "subscribe to comments and answers" %}"></a>
\r 
  41     {% trans "Answers and Comments" %}
\r