diff options
author | Sean Smith <ssmith@iol.unh.edu> | 2021-03-24 17:22:54 -0400 |
---|---|---|
committer | Sean Smith <ssmith@iol.unh.edu> | 2021-03-29 16:21:47 -0400 |
commit | d007fa661e2faf77e70cb75c8d520941e907ebf7 (patch) | |
tree | 69b83bf903635768ac8614bfd799de998bb046ea /src/booking/forms.py | |
parent | f6753ae2c5f54fb79375214590e565218b1bf0d7 (diff) |
Remove exposure of users on dashboard
Signed-off-by: Sean Smith <ssmith@iol.unh.edu>
Change-Id: I83b93d9247a7eafb54e4a5761d1423a504d86400
Diffstat (limited to 'src/booking/forms.py')
-rw-r--r-- | src/booking/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/booking/forms.py b/src/booking/forms.py index 2a8784f..b2df799 100644 --- a/src/booking/forms.py +++ b/src/booking/forms.py @@ -40,7 +40,7 @@ class QuickBookingForm(forms.Form): ) self.fields['users'] = SearchableSelectMultipleField( - queryset=UserProfile.objects.select_related('user').exclude(user=user), + queryset=UserProfile.objects.filter(public_user=True).select_related('user').exclude(user=user), items=get_user_items(exclude=user), required=False, **get_user_field_opts() |