3 <h3 class="subtitle">{% trans "Subscription" %}:</h3>
\r
4 {% if request.user.is_authenticated %}
\r
5 <div class="subscription-status">
\r
6 {% if subscription %}
\r
7 {% if subscription.auto_subscription %}
\r
8 <p>{% trans "You were automatically subscribed to this question." %}</p>
\r
10 <p>{% trans "You are subscribed to this question." %}</p>
\r
13 <p>{% trans "You are not subscribed to this question." %}</p>
\r
16 <p><a class="ajax-command sidebar_button subscription_switch" href="{% url subscribe id=question.id %}">
\r
17 {% if subscription %}
\r
18 {% trans "unsubscribe me" %}
\r
20 {% trans "subscribe me" %}
\r
24 {% blocktrans with request.user.get_profile_url as profile_url %}
\r
25 (you can adjust your notification settings on your <a href="{{ profile_url }}?sort=email_subscriptions">profile</a>)
\r
29 <p>{% trans "Once you sign in you will be able to subscribe for any updates here" %}</p>
\r