{% extends "quillet/base.html" %} {% block title %}Admin โ {{ newsletter.name }}{% endblock %} {% block head %} {% endblock %} {% block content %}
{{ confirmed_count }} confirmed subscriber{{ 's' if confirmed_count != 1 }} ยท manage subscribers
{% if posts %}| 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 %} |
No posts yet. Create one โ
{% endif %} {% endblock %}