{% extends "base.html" %} {% from "macros/title.html" import title_tag with context %} {% from "macros/icon.html" import icon, callout with context %} {% block title %}{{ title_tag('Confirm deletion: ' + p.title, False) }}{% endblock %} {% block heading %}

Confirm deletion: {{ p.title }}

{% endblock %} {% block content %}

You are about to delete permanently your post on {{ p.topic_or_user().handle() }}.

{% call callout('spoiler', 'error') %}This action cannot be undone.{% endcall %} {% if (p.comment_count()) %} {% call callout('spoiler', 'warning') %}Your post has {{ (p.comment_count()) }} comments. Your post will be deleted along with ALL the comments.{% endcall %} {% endif %}
{% endblock %}