{% extends "base.html" %} {% load i18n %} {% block main %} {% if not subscription_deleted %}

{% trans "Unsubscribe from our newsletter" %}

{% trans "Pleas enter your email below to unsubscribe." %}

{% csrf_token %}

{% include "django_libs/partials/form_field.html" with field=form.email %}

{% else %}

{% trans "You've been unsubscribed from our newsletter." %}

{% trans "If you like to subscribe again click" %} {% trans "here" %}.

{% endif %} {% endblock %}