{% 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' %}

Check your email

We've sent a confirmation link to your address. Click it to complete your subscription to {{ newsletter.name }}.

{% elif state == 'confirmed' %}

You're subscribed!

Welcome to {{ newsletter.name }}. You'll receive future posts by email.

Browse the archive →

{% elif state == 'unsubscribed' %}

Unsubscribed

You've been removed from {{ newsletter.name }}. You won't receive any more emails.

{% else %}

Invalid link

This confirmation link is invalid or has already been used.

{% endif %} {% endblock %}