Skip to content

Commit

Permalink
remove end_date_extension field from allocation changerequest form
Browse files Browse the repository at this point in the history
  • Loading branch information
claire-peters committed Dec 20, 2023
1 parent a7ca488 commit 984c06d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions coldfront/core/allocation/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 984c06d

Please sign in to comment.