Skip to content

Commit

Permalink
The help text in 'UserChangeForm' updated
Browse files Browse the repository at this point in the history
'upload_confirm_emails' and 'attestation_emails' help text updated
  • Loading branch information
Abdallah-Abouelatta authored Jan 27, 2023
1 parent dca9d29 commit 49ab69f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/accounts/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ class UserChangeForm(forms.ModelForm):
# overriding modelfields to ensure required fields are provided
first_name = forms.CharField(max_length = 30, required=True)
last_name = forms.CharField(max_length = 30, required=True)
attestation_emails = forms.BooleanField(help_text="recive Email for each task attestation.", required=False)
upload_confirm_emails = forms.BooleanField(help_text="recive submission Email for each upload.", required=False)
attestation_emails = forms.BooleanField(help_text="Receive a confirmation email for each task that has been attested.", required=False)
upload_confirm_emails = forms.BooleanField(help_text="Recive a confirmation Email for each file that has been uploaded.", required=False)
#email = forms.EmailField(required=True)

class Meta:
Expand Down

0 comments on commit 49ab69f

Please sign in to comment.