# Generated by Django 5.1.4 on 2025-07-10 16:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("booking", "0007_alter_emailtemplate_body"),
]
operations = [
migrations.AlterField(
model_name="emailtemplate",
name="body",
field=models.TextField(
help_text=" Email template to use for sending notifications about deleted events.
\n If not set, no email will be sent.
\n Jinja2 template syntax can be used in the subject and body.
\n Available variables:
\n - event_name: The name of the event
\n - event_start: The start time of the event
\n - event_end: The end time of the event
\n - event_created: The time the event was created
\n - event_is_deleted: Whether the event was deleted
\n - event_is_cancelled: Whether the event was cancelled
\n - event_is_recurring: Whether the event is recurring
\n - event_organizer: The organizer of the event
\n - overlap_event_name: The name of the overlap event
\n - overlap_event_start: The start time of the overlap event
\n - overlap_event_end: The end time of the overlap event
\n - overlap_event_created: The time the overlap event was created
\n - overlap_event_organizer: The organizer of the overlap event
\n - calendar_name: The name of the calendar"
),
),
]