feat: Add specific shift date field for multi-day events with date selector in EventEditor and date badge in ShiftMatrix

This commit is contained in:
Richard
2026-07-31 10:52:20 +02:00
parent 67b02f6646
commit 821e14fcab
13 changed files with 104 additions and 62 deletions
@@ -0,0 +1,18 @@
# Generated by Django 6.0.7 on 2026-07-31 08:51
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('events', '0003_event_is_active'),
]
operations = [
migrations.AddField(
model_name='shift',
name='date',
field=models.DateField(blank=True, help_text='Spezifisches Datum für mehrtägige Veranstaltungen', null=True),
),
]