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
+13
View File
@@ -165,10 +165,23 @@ class CalendarEventAdmin(admin.ModelAdmin):
list_display = [
"event_name",
"start_date",
"start_time",
"end_date",
"end_time",
"coordinator_email",
"event_link_name",
]
fields = [
"event_name",
"start_date",
"start_time",
"end_date",
"end_time",
"location_name",
"coordinator_email",
"event_link_name",
"event_url",
]
class AddressModelAdmin(admin.ModelAdmin):