From 0ac1f9f7ba030f0810595423f7005a5be4da2275 Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Sat, 30 Aug 2025 22:22:12 +0000 Subject: [PATCH] Update web/core/forms.py --- web/core/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/core/forms.py b/web/core/forms.py index b7fc75d..4cb5cb3 100644 --- a/web/core/forms.py +++ b/web/core/forms.py @@ -65,7 +65,7 @@ class EntryForm(forms.Form): class AnnouncementForm(ModelForm): class Meta: model = Announcement - fields = ["title", "message", "is_active", "start_at", "end_at"] + fields = ["title", "message", "is_active"] widgets = { "message": Textarea(attrs={"rows": 6, "placeholder": "What’s new in this release…"}), }