Formatting
This commit is contained in:
parent
91aaf704f5
commit
48a5232ebb
2 changed files with 11 additions and 4 deletions
|
@ -115,7 +115,14 @@ class StatusForm(CustomForm):
|
|||
class EditUserForm(CustomForm):
|
||||
class Meta:
|
||||
model = models.User
|
||||
fields = ["avatar", "name", "email", "summary", "manually_approves_followers", "show_goal"]
|
||||
fields = [
|
||||
"avatar",
|
||||
"name",
|
||||
"email",
|
||||
"summary",
|
||||
"manually_approves_followers",
|
||||
"show_goal",
|
||||
]
|
||||
help_texts = {f: None for f in fields}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue