From 984c06d248e55498f1e1717b32fe045f43c700de Mon Sep 17 00:00:00 2001 From: Claire Peters Date: Wed, 20 Dec 2023 11:26:48 -0800 Subject: [PATCH] remove end_date_extension field from allocation changerequest form --- coldfront/core/allocation/forms.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/coldfront/core/allocation/forms.py b/coldfront/core/allocation/forms.py index 90b1ef48b..dc1ea70d4 100644 --- a/coldfront/core/allocation/forms.py +++ b/coldfront/core/allocation/forms.py @@ -356,12 +356,12 @@ class AllocationChangeForm(forms.Form): for choice in ALLOCATION_CHANGE_REQUEST_EXTENSION_DAYS: EXTENSION_CHOICES.append((choice, "{} days".format(choice))) - end_date_extension = forms.TypedChoiceField( - label='Request End Date Extension', - choices = EXTENSION_CHOICES, - coerce=int, - required=False, - empty_value=0,) + # end_date_extension = forms.TypedChoiceField( + # label='Request End Date Extension', + # choices = EXTENSION_CHOICES, + # coerce=int, + # required=False, + # empty_value=0,) justification = forms.CharField( label='Justification for Changes', widget=forms.Textarea,