{% extends "admin/layout.html" %} {% block title %}{{ _("Delete Page") }}{% endblock %} {% block contents %}

{{ _("Delete Page") }}

{%- call form() %}

{% trans page_title=form.post.title|e %} Do you really want to delete page “{{ page_title }}”? {% endtrans %}

{%- if form.post.comments %}

{% trans comment_count=form.post.comments|count %} This will also delete {{ comment_count }} comment. {% pluralize %} This will also delete {{ comment_count }} comments. {% endtrans %}

{%- endif %}
{%- endcall %} {% endblock %}