Skip to content

Commit 60e34a4

Browse files
committed
show is_public instead of is_allocatable resources in allocation request form
1 parent 5375950 commit 60e34a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coldfront/core/allocation/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ class AllocationSearchForm(forms.Form):
308308
resource_name = forms.ModelMultipleChoiceField(
309309
label='Resource Name',
310310
queryset=Resource.objects.filter(
311-
is_allocatable=True).order_by(Lower('name')),
311+
is_public=True).order_by(Lower('name')),
312312
required=False)
313313
allocation_attribute_name = forms.ModelChoiceField(
314314
label='Allocation Attribute Name',

0 commit comments

Comments
 (0)