{% extends "base.html" %} {% load i18n %} {% block body %}

{% trans "Delete" %}

{% trans "Are you sure that you really want to cancel this occurrence?" %}
{% csrf_token %}

{{ occurrence.title }}

{% blocktrans with start_date=occurrence.start|date:_("DATETIME_FORMAT") end_date=occurrence.end|date:_("DATETIME_FORMAT") %} From {{ start_date }} to {{ end_date }}
{% endblocktrans %}
{% endblock %}