From b2ece8bd78b3b911d0e04527362d71535809202c Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Mon, 4 Mar 2019 21:10:09 +0100 Subject: [PATCH] Add help text to sharing form --- map/forms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/map/forms.py b/map/forms.py index ac7c551..e6493a7 100644 --- a/map/forms.py +++ b/map/forms.py @@ -36,6 +36,7 @@ class LocationSharingForm(forms.ModelForm): self.request = request self.fields['shares_location_to'].queryset = Friend.objects.exclude(pk=request.user.pk) self.fields['shares_location_to'].label = 'Share location to' + self.fields['shares_location_to'].help_text = 'Hold Ctrl or Cmd to select multiple users' class FriendCreationForm(UserCreationForm):