feat(profile): add help text to bio field

This commit is contained in:
Ethan Nguyen 2021-04-22 17:31:28 -04:00
parent ffb41edf98
commit e818d8fbc4
No known key found for this signature in database
GPG Key ID: B4CA5339AF911920

View File

@ -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: