diff --git a/bookwyrm/forms.py b/bookwyrm/forms.py index f93816de..edf1d9e4 100644 --- a/bookwyrm/forms.py +++ b/bookwyrm/forms.py @@ -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} diff --git a/bookwyrm/migrations/0052_user_show_goal.py b/bookwyrm/migrations/0052_user_show_goal.py index 4455e048..3b72ee7a 100644 --- a/bookwyrm/migrations/0052_user_show_goal.py +++ b/bookwyrm/migrations/0052_user_show_goal.py @@ -6,13 +6,13 @@ from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ - ('bookwyrm', '0051_auto_20210316_1950'), + ("bookwyrm", "0051_auto_20210316_1950"), ] operations = [ migrations.AddField( - model_name='user', - name='show_goal', + model_name="user", + name="show_goal", field=models.BooleanField(default=True), ), ]