summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSamantaz Fox <coding@samantaz.fr>2022-02-23 16:42:34 +0100
committerSamantaz Fox <coding@samantaz.fr>2022-02-23 16:42:34 +0100
commit8da336b7aa201abea73b4b7844318ad323c6cd62 (patch)
tree828324dd4c1f8c08b0e5557a43f9d9129749b5d9 /src
parent897f871f99d229f333b82d65206621aa69cf53eb (diff)
downloadinvidious-8da336b7aa201abea73b4b7844318ad323c6cd62.tar.gz
invidious-8da336b7aa201abea73b4b7844318ad323c6cd62.tar.bz2
invidious-8da336b7aa201abea73b4b7844318ad323c6cd62.zip
Move the "watch history" checkbox under the "user" section
Diffstat (limited to 'src')
-rw-r--r--src/invidious/views/user/preferences.ecr10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/invidious/views/user/preferences.ecr b/src/invidious/views/user/preferences.ecr
index 1e16c5ec..a584cedb 100644
--- a/src/invidious/views/user/preferences.ecr
+++ b/src/invidious/views/user/preferences.ecr
@@ -23,11 +23,6 @@
</div>
<div class="pure-control-group">
- <label for="watch_history"><%= translate(locale, "preferences_watch_history") %></label>
- <input name="watch_history" id="watch_history" type="checkbox" <% if preferences.watch_history %>checked<% end %>>
- </div>
-
- <div class="pure-control-group">
<label for="continue_autoplay"><%= translate(locale, "preferences_continue_autoplay_label") %></label>
<input name="continue_autoplay" id="continue_autoplay" type="checkbox" <% if preferences.continue_autoplay %>checked<% end %>>
</div>
@@ -212,6 +207,11 @@
<legend><%= translate(locale, "preferences_category_subscription") %></legend>
<div class="pure-control-group">
+ <label for="watch_history"><%= translate(locale, "preferences_watch_history") %></label>
+ <input name="watch_history" id="watch_history" type="checkbox" <% if preferences.watch_history %>checked<% end %>>
+ </div>
+
+ <div class="pure-control-group">
<label for="annotations_subscribed"><%= translate(locale, "preferences_annotations_subscribed_label") %></label>
<input name="annotations_subscribed" id="annotations_subscribed" type="checkbox" <% if preferences.annotations_subscribed %>checked<% end %>>
</div>