{% extends "wiki/base.html" %} {% load wiki_tags i18n humanize %} {% load url from future %} {% block wiki_pagetitle %}{% trans "Notifications" %}: {{ article.current_revision.title }}{% endblock %} {% block wiki_contents %}

{% trans "Your notification settings" %}

{% trans "Manage how often you receive notifications" %}

{% include "wiki/includes/formerrors.html" with form=formset.management_form %} {% csrf_token %} {{ formset.management_form }} {% for form in formset %}
{% trans "Settings for" %} {{ form.instance.articlesubscriptions.count }} {% trans "articles" %} {% include "wiki/includes/formerrors.html" with form=form %} {% for field in form %} {% include "wiki/includes/formfield.html" %} {% endfor %}
{% empty %} {% trans "You are not subscribed to any notifications yet." %} {% endfor %} {% if formset.forms %}
{% endif %}
{% endblock %}