mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-21 17:11:06 +00:00
Adds option to show ratings to the user settings panel
This commit is contained in:
parent
f53bb62b2b
commit
612098475a
2 changed files with 7 additions and 0 deletions
|
@ -18,6 +18,7 @@ class EditUserForm(CustomForm):
|
|||
"email",
|
||||
"summary",
|
||||
"show_goal",
|
||||
"show_ratings",
|
||||
"show_suggested_users",
|
||||
"manually_approves_followers",
|
||||
"default_post_privacy",
|
||||
|
|
|
@ -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 }}
|
||||
|
|
Loading…
Reference in a new issue