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

{{ _("Delete Entry") }}

{%- call form() %}

{% trans entry_title=form.post.title|e %} Do you really want to delete entry “{{ entry_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 %}