{% load i18n %}

{% trans "Subscription" %}:

{% if request.user.is_authenticated %}
{% if subscription %} {% if subscription.auto_subscription %}

{% trans "You were automatically subscribed to this question." %}

{% else %}

{% trans "You are subscribed to this question." %}

{% endif %} {% else %}

{% trans "You are not subscribed to this question." %}

{% endif %}

{% if subscription %} {% trans "unsubscribe me" %} {% else %} {% trans "subscribe me" %} {% endif %}

{% url user_subscriptions id=request.user.id,slug=request.user.username|slugify as subscriptions_url %} {% blocktrans %} (you can adjust your notification settings on your profile) {% endblocktrans %}

{% else %}

{% trans "Once you sign in you will be able to subscribe for any updates here" %}

{% endif %}