{% extends "articles/base.html" %} {% load article_tags %} {% block title %}{% trans "Delete" %} {% firstof MODULE_ARTICLES_LABEL trans 'Article' %} - {% blocktrans with title=article.get_title %}{{ title }}{% endblocktrans %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Delete" %} {% firstof MODULE_ARTICLES_LABEL trans 'Article' %}

{% blocktrans with headline=article.headline %}{{ headline }}{% endblocktrans %}

{% blocktrans with body=article.body|safe|truncatewords_html:"100" %}{{ body }}{% endblocktrans %}
{% trans "Are you sure you want to permanently delete this" %} {% firstof MODULE_ARTICLES_LABEL trans 'Article' %} ?
{% csrf_token %}
{% endblock %}