Skip to content

Commit

Permalink
show is_public instead of is_allocatable resources in allocation requ…
Browse files Browse the repository at this point in the history
…est form
  • Loading branch information
claire-peters committed Dec 12, 2024
1 parent 5375950 commit 60e34a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coldfront/core/allocation/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ class AllocationSearchForm(forms.Form):
resource_name = forms.ModelMultipleChoiceField(
label='Resource Name',
queryset=Resource.objects.filter(
is_allocatable=True).order_by(Lower('name')),
is_public=True).order_by(Lower('name')),
required=False)
allocation_attribute_name = forms.ModelChoiceField(
label='Allocation Attribute Name',
Expand Down

0 comments on commit 60e34a4

Please sign in to comment.