eventcally/project/templates/email/organization_deletion_requested_notice.html
2023-05-01 19:53:01 +02:00

6 lines
364 B
HTML

{% extends "email/layout.html" %}
{% from "_macros.html" import render_email_button %}
{% block content %}
<p>{{ _('%(admin_unit_name)s is scheduled for deletion.', admin_unit_name=admin_unit.name) }}</p>
{{ render_email_button(url_for('admin_unit_cancel_deletion', id=admin_unit.id, _external=True), _('Click here below to cancel the deletion')) }}
{% endblock %}