{% trans "Delete Agenda Item" %} {% if agenda_item_object.children.all %}

{% trans 'Deleting this Agenda Item will also delete the following Agenda Items:' %}

{% recurse item.children.all with agenda_item_object.children.all as item %}
    {% loop %}
  1. {{ item.title }} - {{ item.owner.realname }} @ {{ item.created_date|date:"D, d N Y H:i T" }}
  2. {% child %} {% endloop %}
{% endrecurse %} {% endif %}

{% blocktrans with agenda_item_object.title as itemname %}Do you really want to delete the Agenda Item: {{itemname}}?{% endblocktrans %}

{% trans "Cancel" %}