{% extends 'base.html' %} {% load staticfiles %} {% load i18n %} {% block head %} {% endblock head %} {% block main %} {% for article in drafts %} {% empty %} {% endfor %}
{% trans 'Title' %} {% trans 'Content' %} {% trans 'Tags' %}
{{ article.title }} {{ article.get_summary_as_markdown|safe }} {% for tag in article.get_tags %} {{ tag }} {% endfor %}
{% trans 'No draft to display' %}
{% endblock main %}