From e818d8fbc4ef2e632fdc44e721e1d7dc1c83eacc Mon Sep 17 00:00:00 2001 From: Ethan Nguyen Date: Thu, 22 Apr 2021 17:31:28 -0400 Subject: [PATCH] feat(profile): add help text to bio field --- tjdests/apps/profile/forms.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tjdests/apps/profile/forms.py b/tjdests/apps/profile/forms.py index abd66da..e913a99 100644 --- a/tjdests/apps/profile/forms.py +++ b/tjdests/apps/profile/forms.py @@ -26,6 +26,10 @@ class ProfilePublishForm(forms.ModelForm): model = User fields = ["publish_data", "biography", "attending_decision"] + help_texts = { + "biography": "ECs, intended major, advice, etc.", + } + class DecisionForm(forms.ModelForm): class Meta: