{% extends "quillet/base.html" %} {% block title %} {% if state == 'confirmed' %}Subscribed! {% elif state == 'pending' %}Check your email {% elif state == 'unsubscribed' %}Unsubscribed {% else %}Invalid link {% endif %} — {{ newsletter.name }} {% endblock %} {% block content %} {% if state == 'pending' %}
We've sent a confirmation link to your address. Click it to complete your subscription to {{ newsletter.name }}.
{% elif state == 'confirmed' %}Welcome to {{ newsletter.name }}. You'll receive future posts by email.
{% elif state == 'unsubscribed' %}You've been removed from {{ newsletter.name }}. You won't receive any more emails.
{% else %}This confirmation link is invalid or has already been used.
{% endif %} {% endblock %}