Adds option to show ratings to the user settings panel

This commit is contained in:
Mouse Reeve 2024-08-23 17:34:52 -07:00
parent f53bb62b2b
commit 612098475a
2 changed files with 7 additions and 0 deletions

View file

@ -18,6 +18,7 @@ class EditUserForm(CustomForm):
"email",
"summary",
"show_goal",
"show_ratings",
"show_suggested_users",
"manually_approves_followers",
"default_post_privacy",

View file

@ -69,6 +69,12 @@
{% trans "Show reading goal prompt in feed" %}
</label>
</div>
<div class="field">
<label class="checkbox label" for="id_show_ratings">
{{ form.show_ratings }}
{% trans "Show ratings" %}
</label>
</div>
<div class="field">
<label class="checkbox label" for="id_show_suggested_users">
{{ form.show_suggested_users }}