{% load wagtailadmin_tags %}

Articles overview

{% if drafts %}

Drafts

{% for page in drafts %} {% endfor %}
{{ page.title }} {{ page.latest_revision_created_at|timesince }} ago
{% endif %} {% if scheduled %}

Scheduled

{% for page in scheduled %} {% endfor %}
{{ page.title }} {{ page.go_live_at|date:"N j, Y H:i" }}
{% endif %} {% if recent %}

Recently published

{% for page in recent %} {% endfor %}
{{ page.title }} {{ page.published_date|timesince }} ago
{% endif %} {% if not drafts and not scheduled and not recent %}

No articles yet. Create one.

{% endif %}