{% extends "forum_base.html" %} {% load i18n %} {% block title %}{% trans "Update Thread Subscriptions" %}{% endblock %} {% block pagetitle %}{% trans "Update Thread Subscriptions" %}{% endblock %} {% block content %} {% if user.is_authenticated %} {% if not subs %}

{% trans "No subscriptions." %}

{% else %}
{% csrf_token %} {% for s in subs %} {% endfor %}
{% trans "Forum" %} {% trans "Thread" %} {% trans "Subscribed" %}
{{ s.thread.forum.title }} {% if s.thread.sticky %}{% trans "Sticky" %} {% endif %}{{ s.thread.title|escape }}{% if s.thread.closed %} {% trans "(Closed)" %}{% endif %}

{% endif %} {% if next %}

{% trans "Go back to thread" %}

{% endif %} {% else %}

{% trans "Please login to update your forum subscriptions." %}

{% endif %} {% endblock %}