{% extends "base.html" %} {% load admins %} {% block title %}Opt-out{% endblock %} {% block heading %}Opt-out{% endblock %} {% block body %} {% if confirmation %}

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 {% site_admins %}.

{% endif %} {% endif %} {% if user.is_authenticated %}

Return to your user profile.

{% endif %} {% endblock %}