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 {% url user_subscriptions id=request.user.id,slug=request.user.username|slugify 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