# Generated by Django 5.1.4 on 2025-07-14 09:09 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ("booking", "0010_priorityeventtoken_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 - name: The name of the event
\n - start: The start time (datetime) of the event
\n - end: The end time (datetime) of the event
\n - created: The datetime the event was created
\n - is_deleted: Whether the event was deleted
\n - is_cancelled: Whether the event was cancelled
\n - is_recurring: Whether the event is recurring
\n - organizer: The organizer of the event
\n - is_prioritized: Whether the event is prioritized
\n - is_deprioritized: Whether the event was deprioritized in favor of another event
\n - overlap_events: List of overlap events, each with:
\n - name: The name of the overlap event
\n - start: The start time (datetime) of the overlap event
\n - end: The end time (datetime) of the overlap event
\n - created: The datetime the overlap event was created
\n - organizer: The organizer of the overlap event
\n - is_prioritized: Whether the overlap event is prioritized
\n - calendar_name: The name of the calendar" ), ), migrations.AlterField( model_name="priorityeventtoken", name="signature", field=models.CharField(blank=True, editable=False, max_length=80), ), ]