{% extends "stories/base.html" %} {% load base_tags %} {% block title %}{% trans "Delete Story" %} {% blocktrans with t=story.title %}{{ t }}{% endblocktrans %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Delete a Story" %}

{% if story.image %}
{% blocktrans with t=story.title|truncatechars:123 %}{{ t }}{% endblocktrans %}
{% endif %}

{% blocktrans with t=story.title %}{{ t }}{% endblocktrans %}

{% blocktrans with t=story.content|safe %}{{ t }}{% endblocktrans %}
{% trans "Are you sure you want to permanently delete this story?" %}
{% csrf_token %}
{% endblock %}