{% extends "base.html" %} {% load i18n %} {% load recurse %} {% block page_name %}{% trans "Delete Agenda Item" %}{% endblock %} {% block sub_nav_links %}
  • {% trans "Back to Meeting Details" %}
  • {% endblock %} {% block extrahead %}{{ block.super }} {{form.media}} {% endblock %} {% block content %}
    {% csrf_token %}

    {% 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" %}
    {% endblock %}