{% extends "base.html" %} {% block title %}opt-out{% endblock %} {% block heading %}opt-out{% endblock %} {% block body %} {% if email_sent %}

Opt-out confirmation email sent

An opt-out confirmation mail has been sent to {{confirmation.email}}, containing a link. Please click on that link to confirm your opt-out.

{% else %} {% if error %}

{{error}}

{% endif %} {% if form %}

This form allows you to opt-out of automated email from patchwork.

If you opt-out of email, Patchwork may still email you if you do certain actions yourself (such as create a new patchwork account), but will not send you unsolicited email.

When you submit it, one email will be sent to your address with a link to click to finalise the opt-out. Patchwork does this to prevent someone opting you out without your consent.

{% csrf_token %} {{form.email.errors}}
{{form.email.label_tag}}: {{form.email}}
{% endif %} {% if error and admins %}

If you are having trouble opting out, please email {% for admin in admins %} {% if admins|length > 1 and forloop.last %} or {% endif %} {{admin.0}} <{{admin.1}}>{% if admins|length > 2 and not forloop.last %}, {% endif %} {% endfor %} {% endif %} {% endif %} {% if user.is_authenticated %}

Return to your user profile.

{% endif %} {% endblock %}