{% extends "quillet/base.html" %} {% block title %}Admin โ€” {{ newsletter.name }}{% endblock %} {% block head %} {% endblock %} {% block content %}

{{ newsletter.name }}

+ New post

{{ confirmed_count }} confirmed subscriber{{ 's' if confirmed_count != 1 }} ยท manage subscribers

{% if posts %} {% for post in posts %} {% endfor %}
Title Status Published Actions
{{ post.title }} {% if post.sent_at %} Sent {% elif post.published_at %} Published {% else %} Draft {% endif %} {{ post.published_at.strftime('%b %d, %Y') if post.published_at else 'โ€”' }} {% if not post.published_at %}
{% endif %} {% if post.published_at and not post.sent_at %}
{% endif %}
{% else %}

No posts yet. Create one โ†’

{% endif %} {% endblock %}