Add start/end time fields to CalendarEvent.
CI / test (pull_request) Successful in 4s
Unit Tests / test (pull_request) Successful in 3s

Closes #28. Replace hardcoded calendar times with admin-editable
start_time/end_time so event cards show real schedules.
This commit is contained in:
2026-08-04 12:59:58 -05:00
parent 04c3ac913c
commit ac9330f366
6 changed files with 80 additions and 2 deletions
@@ -0,0 +1,23 @@
# Generated by Django 6.0.7 on 2026-08-04 17:59
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('schasite', '0012_alter_payments_date'),
]
operations = [
migrations.AddField(
model_name='calendarevent',
name='end_time',
field=models.TimeField(blank=True, null=True),
),
migrations.AddField(
model_name='calendarevent',
name='start_time',
field=models.TimeField(blank=True, null=True),
),
]