2021-01-03 17:50:23 +13:00
{% extends "base.html" %}
{% import "utils.html" as utils %}
2023-12-27 12:25:52 +13:00
{% block title %}Redlib Settings{% endblock %}
2021-01-03 17:50:23 +13:00
{% block search %}
2023-12-27 10:12:00 +13:00
{% call utils::search("".to_owned(), "") %}
2021-01-03 17:50:23 +13:00
{% endblock %}
2021-01-11 10:08:36 +13:00
{% block content %}
2021-01-31 18:21:46 +13:00
< div id = "settings" >
2021-03-18 13:28:05 +13:00
< form action = "/settings" method = "POST" >
2021-01-31 18:21:46 +13:00
< div class = "prefs" >
2023-01-01 21:56:09 +13:00
< fieldset >
< legend > Appearance< / legend >
< div class = "prefs-group" >
< label for = "theme" > Theme:< / label >
< select name = "theme" id = "theme" >
{% call utils::options(prefs.theme, prefs.available_themes, "system") %}
< / select >
< / div >
< / fieldset >
< fieldset >
< legend > Interface< / legend >
< div class = "prefs-group" >
< label for = "front_page" > Front page:< / label >
< select name = "front_page" id = "front_page" >
{% call utils::options(prefs.front_page, ["default", "popular", "all"], "default") %}
< / select >
< / div >
< div class = "prefs-group" >
< label for = "layout" > Layout:< / label >
< select name = "layout" id = "layout" >
2024-06-30 00:04:46 +12:00
{% call utils::options(prefs.layout, ["card", "clean", "compact", "old", "mosaic"], "card") %}
2023-01-01 21:56:09 +13:00
< / select >
< / div >
< div class = "prefs-group" >
< label for = "wide" > Wide UI:< / label >
< input type = "hidden" value = "off" name = "wide" >
2024-06-30 00:04:46 +12:00
< input type = "checkbox" name = "wide" id = "wide" { % if prefs . layout = = " old " | | prefs . layout = = " mosaic " % } disabled { % endif % } { % if prefs . wide = = " on " | | prefs . layout = = " old " | | prefs . layout = = " mosaic " % } checked { % endif % } >
{% if prefs.layout == "old" || prefs.layout == "mosaic" %}< span > ⓘ Wide UI is always enabled with this layout< / span > {% endif %}
2023-01-01 21:56:09 +13:00
< / div >
< / fieldset >
< fieldset >
< legend > Content< / legend >
< div class = "prefs-group" >
< label for = "post_sort" title = "Applies only to subreddit feeds" > Default subreddit post sort:< / label >
< select name = "post_sort" >
{% call utils::options(prefs.post_sort, ["hot", "new", "top", "rising", "controversial"], "hot") %}
< / select >
< / div >
< div class = "prefs-group" >
< label for = "comment_sort" > Default comment sort:< / label >
< select name = "comment_sort" id = "comment_sort" >
{% call utils::options(prefs.comment_sort, ["confidence", "top", "new", "controversial", "old"], "confidence") %}
< / select >
< / div >
2023-01-03 22:39:45 +13:00
{% if !crate::utils::sfw_only() %}
2023-01-01 21:56:09 +13:00
< div class = "prefs-group" >
< label for = "show_nsfw" > Show NSFW posts:< / label >
< input type = "hidden" value = "off" name = "show_nsfw" >
< input type = "checkbox" name = "show_nsfw" id = "show_nsfw" { % if prefs . show_nsfw = = " on " % } checked { % endif % } >
< / div >
< div class = "prefs-group" >
< label for = "blur_nsfw" > Blur NSFW previews:< / label >
< input type = "hidden" value = "off" name = "blur_nsfw" >
< input type = "checkbox" name = "blur_nsfw" id = "blur_nsfw" { % if prefs . blur_nsfw = = " on " % } checked { % endif % } >
< / div >
2023-01-03 22:39:45 +13:00
{% endif %}
2023-01-01 21:56:09 +13:00
< div class = "prefs-group" >
< label for = "autoplay_videos" > Autoplay videos< / label >
< input type = "hidden" value = "off" name = "autoplay_videos" >
< input type = "checkbox" name = "autoplay_videos" id = "autoplay_videos" { % if prefs . autoplay_videos = = " on " % } checked { % endif % } >
< / div >
2024-05-14 09:49:59 +12:00
< div class = "prefs-group" >
2023-01-17 16:43:54 +13:00
< label for = "fixed_navbar" > Keep navbar fixed< / label >
2024-05-14 09:49:59 +12:00
< input type = "hidden" value = "off" name = "fixed_navbar" >
< input type = "checkbox" name = "fixed_navbar" { % if prefs . fixed_navbar = = " on " % } checked { % endif % } >
< / div >
< div class = "prefs-group" >
< label for = "hide_sidebar_and_summary" > Hide the summary and sidebar< / label >
< input type = "hidden" value = "off" name = "hide_sidebar_and_summary" >
< input type = "checkbox" name = "hide_sidebar_and_summary" { % if prefs . hide_sidebar_and_summary = = " on " % } checked { % endif % } >
< / div >
2023-01-01 21:56:09 +13:00
< div class = "prefs-group" >
< label for = "use_hls" > Use HLS for videos< / label >
2021-11-24 19:43:25 +13:00
< details id = "feeds" >
< summary > Why?< / summary >
2023-12-27 12:25:52 +13:00
< div id = "feed_list" class = "helper" > Reddit videos require JavaScript (via HLS.js) to be enabled to be played with audio. Therefore, this toggle lets you either use Redlib JS-free or utilize this feature.< / div >
2021-11-24 19:43:25 +13:00
< / details >
2023-01-01 21:56:09 +13:00
< input type = "hidden" value = "off" name = "use_hls" >
< input type = "checkbox" name = "use_hls" id = "use_hls" { % if prefs . use_hls = = " on " % } checked { % endif % } >
< / div >
< div class = "prefs-group" >
< label for = "hide_hls_notification" > Hide notification about possible HLS usage< / label >
< input type = "hidden" value = "off" name = "hide_hls_notification" >
< input type = "checkbox" name = "hide_hls_notification" id = "hide_hls_notification" { % if prefs . hide_hls_notification = = " on " % } checked { % endif % } >
< / div >
2023-01-02 15:39:38 +13:00
< div class = "prefs-group" >
< label for = "hide_awards" > Hide awards< / label >
< input type = "hidden" value = "off" name = "hide_awards" >
< input type = "checkbox" name = "hide_awards" id = "hide_awards" { % if prefs . hide_awards = = " on " % } checked { % endif % } >
< / div >
2023-03-23 16:08:20 +13:00
< div class = "prefs-group" >
< label for = "hide_score" > Hide score< / label >
< input type = "hidden" value = "off" name = "hide_score" >
< input type = "checkbox" name = "hide_score" id = "hide_score" { % if prefs . hide_score = = " on " % } checked { % endif % } >
< / div >
2023-02-08 20:22:37 +13:00
< div class = "prefs-group" >
< label for = "disable_visit_reddit_confirmation" > Do not confirm before visiting content on Reddit< / label >
< input type = "hidden" value = "off" name = "disable_visit_reddit_confirmation" >
< input type = "checkbox" name = "disable_visit_reddit_confirmation" { % if prefs . disable_visit_reddit_confirmation = = " on " % } checked { % endif % } >
< / div >
2023-01-01 21:56:09 +13:00
< / fieldset >
2021-02-14 09:55:23 +13:00
< input id = "save" type = "submit" value = "Save" >
2021-01-11 15:15:34 +13:00
< / div >
2021-01-31 18:21:46 +13:00
< / form >
2021-02-14 09:55:23 +13:00
{% if prefs.subscriptions.len() > 0 %}
< div class = "prefs" id = "settings_subs" >
2021-12-28 10:43:44 +13:00
< legend > Subscribed Feeds< / legend >
2021-02-14 09:55:23 +13:00
{% for sub in prefs.subscriptions %}
< div >
2021-11-22 19:30:44 +13:00
{% let feed -%}
{% if sub.starts_with("u_") -%}{% let feed = format!("u/{}", & sub[2..]) -%}{% else -%}{% let feed = format!("r/{}", sub) -%}{% endif -%}
< a href = "/{{ feed }}" > {{ feed }}< / a >
2021-02-14 09:55:23 +13:00
< form action = "/r/{{ sub }}/unsubscribe/?redirect=settings" method = "POST" >
< button class = "unsubscribe" > Unsubscribe< / button >
< / form >
< / div >
{% endfor %}
< / div >
2021-01-31 00:27:49 +13:00
{% endif %}
2021-11-26 17:02:04 +13:00
{% if !prefs.filters.is_empty() %}
< div class = "prefs" id = "settings_filters" >
2021-12-28 10:43:44 +13:00
< legend > Filtered Feeds< / legend >
2021-11-26 17:02:04 +13:00
{% for sub in prefs.filters %}
< div >
{% let feed -%}
{% if sub.starts_with("u_") -%}{% let feed = format!("u/{}", & sub[2..]) -%}{% else -%}{% let feed = format!("r/{}", sub) -%}{% endif -%}
< a href = "/{{ feed }}" > {{ feed }}< / a >
< form action = "/r/{{ sub }}/unfilter/?redirect=settings" method = "POST" >
< button class = "unfilter" > Unfilter< / button >
< / form >
< / div >
{% endfor %}
< / div >
{% endif %}
2021-05-10 13:25:52 +12:00
2021-02-14 09:55:23 +13:00
< div id = "settings_note" >
< p > < b > Note:< / b > settings and subscriptions are saved in browser cookies. Clearing your cookies will reset them.< / p > < br >
2023-01-17 16:43:54 +13:00
< p > You can restore your current settings and subscriptions after clearing your cookies using < a href = "/settings/restore/?theme={{ prefs.theme }}&front_page={{ prefs.front_page }}&layout={{ prefs.layout }}&wide={{ prefs.wide }}&post_sort={{ prefs.post_sort }}&comment_sort={{ prefs.comment_sort }}&show_nsfw={{ prefs.show_nsfw }}&use_hls={{ prefs.use_hls }}&hide_hls_notification={{ prefs.hide_hls_notification }}&hide_awards={{ prefs.hide_awards }}&fixed_navbar={{ prefs.fixed_navbar }}&subscriptions={{ prefs.subscriptions.join(" % 2B " ) } } & filters = {{ prefs . filters . join ( " % 2B " ) } } " > this link< / a > .< / p >
2021-02-14 09:55:23 +13:00
< / div >
2021-01-31 18:21:46 +13:00
< / div >
2021-01-31 00:27:49 +13:00
2021-01-18 08:39:57 +13:00
{% endblock %}