{% extends "base.html" %} {% block title %}{{ _("My Drafts") }}{% end block %} {% block main %}
{{ _("My Drafts") }}
{% if drafts %} {% for post in drafts %} {{ post.title }}

{% if post.published_at %} {{ _("Scheduled to be published %s") % locale.format_date(post.published_at, relative=False) }}, {% end %} {% if post.updated_at %} {{ _("Updated %s") % locale.format_date(post.updated_at) }} {% else %} {{ _("Created %s") % locale.format_date(post.created_at) }} {% end %}

{% end %} {% else %}

{{ _("You currently do not have any drafts") }}

{% end %}
{% end block %}