26 lines
2.4 KiB
Python
26 lines
2.4 KiB
Python
# 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.<br>\n If not set, no email will be sent.<br>\n Jinja2 template syntax can be used in the subject and body.<br>\n Available variables:<br>\n - name: The name of the event<br>\n - start: The start time (datetime) of the event<br>\n - end: The end time (datetime) of the event<br>\n - created: The datetime the event was created<br>\n - is_deleted: Whether the event was deleted<br>\n - is_cancelled: Whether the event was cancelled<br>\n - is_recurring: Whether the event is recurring<br>\n - organizer: The organizer of the event<br>\n - is_prioritized: Whether the event is prioritized<br>\n - is_deprioritized: Whether the event was deprioritized in favor of another event<br>\n - overlap_events: List of overlap events, each with:<br>\n - name: The name of the overlap event<br>\n - start: The start time (datetime) of the overlap event<br>\n - end: The end time (datetime) of the overlap event<br>\n - created: The datetime the overlap event was created<br>\n - organizer: The organizer of the overlap event<br>\n - is_prioritized: Whether the overlap event is prioritized<br>\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),
|
|
),
|
|
]
|