2022-11-06 06:35:49 +00:00
{% extends "settings.html" %}
2022-11-21 08:52:22 +00:00
{% block pagetitle %}Advanced Settings{% endblock %}
2022-11-06 06:35:49 +00:00
{% block content %}
< div class = "row settings-page" id = "settings-page-advanced" >
< div class = "col col-lg-8" >
< div class = "settings" >
{# toggle_section(title, id, name, flag, below_text) #}
< section id = "site-settings-poorcel-mode-section" class = "settings-section-section" > {# note: not using the thing from common just because of how much stuff there is in here #}
2022-11-07 05:12:01 +00:00
< h5 > Poor Mode< / h5 >
2022-11-06 06:35:49 +00:00
< div class = "settings-section rounded" >
< div class = "d-lg-flex border-bottom" >
< div class = "title w-lg-25" >
2022-11-07 05:12:01 +00:00
< label for = "poor" > Poor Mode< / label >
2022-11-06 06:35:49 +00:00
< / div >
< div class = "body w-lg-100" >
< div class = "custom-control custom-switch" >
2022-12-30 12:14:18 +00:00
< input autocomplete = "off" type = "checkbox" class = "custom-control-input setting_switch" id = "poor" name = "poor" { % if v . poor % } checked { % endif % } >
2022-11-06 06:35:49 +00:00
< label class = "custom-control-label" for = "poor" > < / label >
< / div >
< span class = "text-small text-muted" > Makes the site faster for low-end devices:< / span >
< ul >
< li > < small > Disables the effects of cosmetic awards.< / small > < / li >
< li > < small > Hides signatures.< / small > < / li >
< li > < small > Makes emoji search only start when you press Enter.< / small > < / li >
< li > < small > Disables UI animations.< / small > < / li >
< / ul >
< / div >
< / div >
< / div >
< / section >
2022-11-06 08:59:50 +00:00
< section id = "site-settings-sort-time-filter-section" class = "settings-section-section" >
< h5 > Sorting and Filtering< / h5 >
2022-11-06 06:35:49 +00:00
< div class = "settings-section rounded" >
2022-11-06 08:59:50 +00:00
< div class = "d-lg-flex border-bottom" >
< div class = "title w-lg-25" >
< label for = "frontsize" > Frontpage Size< / label >
< / div >
< div class = "body w-lg-100" >
< p > Change how many posts appear on every page.< / p >
< div class = "input-group mb2" >
2022-12-30 12:14:18 +00:00
< select autocomplete = "off" id = 'frontsize' class = "form-control setting_switch" form = "profile-settings" name = "frontsize" >
2022-11-06 09:48:06 +00:00
{% for entry in PAGE_SIZES %}
2022-11-06 08:59:50 +00:00
< option value = "{{entry}}" { { ' selected ' if v . frontsize = =entry}} > {{entry}}< / option >
{% endfor %}
< / select >
< / div >
2022-11-06 06:35:49 +00:00
< / div >
< / div >
< div class = "d-lg-flex border-bottom" >
< div class = "title w-lg-25" >
< label for = "defaultsortingcomments" > Default Sorting for Comments< / label >
< / div >
< div class = "body w-lg-100" >
< p > Change the default sorting for comments.< / p >
< div class = "input-group mb2" >
2022-12-30 12:14:18 +00:00
< select autocomplete = "off" id = 'defaultsortingcomments' class = "form-control setting_switch" form = "profile-settings" name = "defaultsortingcomments" >
2022-11-06 09:48:06 +00:00
{% for entry in COMMENT_SORTS %}
2022-11-06 06:35:49 +00:00
< option value = "{{entry}}" { { ' selected ' if v . defaultsortingcomments = =entry}} > {{entry}}< / option >
{% endfor %}
< / select >
< / div >
< / div >
< / div >
< div class = "d-lg-flex border-bottom" >
< div class = "title w-lg-25" >
< label for = "defaultsorting" > Default Sorting for Posts< / label >
< / div >
< div class = "body w-lg-100" >
< p > Change the default sorting for posts.< / p >
< div class = "input-group mb2" >
2022-12-30 12:14:18 +00:00
< select autocomplete = "off" id = 'defaultsorting' class = "form-control setting_switch" form = "profile-settings" name = "defaultsorting" >
2022-11-06 09:44:58 +00:00
{% for entry in SORTS %}
2022-11-06 06:35:49 +00:00
< option value = "{{entry}}" { { ' selected ' if v . defaultsorting = =entry}} > {{entry}}< / option >
{% endfor %}
< / select >
< / div >
< / div >
< / div >
< div class = "d-lg-flex border-bottom" >
< div class = "title w-lg-25" >
< label for = "defaulttime" > Default Time Filter for Posts< / label >
< / div >
< div class = "body w-lg-100" >
< p > Change the default time filter for posts.< / p >
< div class = "input-group mb2" >
2022-12-30 12:14:18 +00:00
< select autocomplete = "off" id = 'defaulttime' class = "form-control setting_switch" form = "profile-settings" name = "defaulttime" >
2022-11-06 09:44:58 +00:00
{% for entry in TIME_FILTERS %}
2022-11-06 06:35:49 +00:00
< option value = "{{entry}}" { { ' selected ' if v . defaulttime = =entry}} > {{entry}}< / option >
{% endfor %}
< / select >
< / div >
< / div >
< / div >
< / div >
< / section >
< section id = "site-settings-tab-behavior-section" class = "settings-section-section" >
< h5 > Tab Behavior< / h5 >
< div class = "settings-section rounded" >
2022-11-21 16:55:09 +00:00
{{common.toggle_section("Open Internal Links In New Tabs", "newtab", "newtab", v.newtab, "Enable if you would like to automatically open links to other pages on the site in new tabs.", false)}}
2022-11-07 02:01:16 +00:00
{{common.toggle_section("Open External Links In New Tabs", "newtabexternal", "newtabexternal", v.newtabexternal, "Enable if you would like to automatically open links to other sites in new tabs.", false)}}
2022-11-06 06:35:49 +00:00
< / div >
< / section >
< section id = "site-settings-external-services-section" class = "settings-section-section" >
< h5 > External Services< / h5 >
< div class = "settings-section rounded" >
2022-11-07 02:01:16 +00:00
{{common.toggle_section("Use Nitter for Twitter Links", "nitter", "nitter", v.nitter, "Enable if you would like to automatically convert twitter.com links to nitter.lacontrevoie.fr links.", false)}}
{{common.toggle_section("Use Imginn for Instagram Links", "imginn", "imginn", v.imginn, "Enable if you would like to automatically convert instagram.com links to imginn.com links.", false)}}
2022-11-06 06:35:49 +00:00
< div class = "d-lg-flex border-bottom" >
< div class = "title w-lg-25" >
< label for = "reddit" > Reddit Domain< / label >
< / div >
< div class = "body w-lg-100" >
< p > Change the domain you would like to view reddit posts in.< / p >
< div class = "input-group mb2" >
2022-12-30 12:14:18 +00:00
< select autocomplete = "off" id = 'reddit' class = "form-control setting_switch" form = "profile-settings" name = "reddit" >
2022-11-06 06:35:49 +00:00
{% for entry in ['old.reddit.com', 'reddit.com', 'i.reddit.com', 'unddit.com', 'teddit.net', 'libredd.it'] %}
< option value = "{{entry}}" { { ' selected ' if v . reddit = =entry}} > {{entry}}< / option >
{% endfor %}
< / select >
< / div >
< / div >
< / div >
2022-11-07 02:01:16 +00:00
{{common.toggle_section("Sort Reddit Links by Controversial", "controversial", "controversial", v.controversial, "Enable if you would like to automatically sort reddit.com links by controversial.", false)}}
2022-11-06 06:35:49 +00:00
< / div >
< / section >
< section id = "site-settings-content-filters" class = "settings-section-section" >
< h5 > Content Filters< / h5 >
< div class = "settings-section rounded" >
2022-11-07 02:01:16 +00:00
{{common.toggle_section('Disable Signatures', 'sigs_disabled', 'sigs_disabled', v.sigs_disabled, 'Hide user signatures.', false)}}
2022-12-20 04:31:32 +00:00
{{common.toggle_section('Disable +18 Warnings', 'over_18', 'over_18', v.over_18, "Disable the warnings that appear when viewing +18 content.", false)}}
2022-11-07 02:01:16 +00:00
{{common.toggle_section('Hide Posts Voted On', 'hidevotedon', 'hidevotedon', v.hidevotedon, 'Enable if you would like to automatically hide posts you have voted on from your frontpage.', false)}}
2022-11-06 09:11:23 +00:00
< div class = "d-lg-flex border-bottom" >
< div class = "title w-lg-25" >
< label for = "custom-filter" > Custom Filters< / label >
< / div >
< div class = "body w-lg-100" >
< form id = "custom-filter" action = "/settings/filters" method = "post" >
2022-11-15 09:19:08 +00:00
< input type = "hidden" name = "formkey" value = "{{v|formkey}}" >
2022-11-06 09:11:23 +00:00
< small > Hides matching posts from the frontpage and collapses matching comments.< / small >
2022-12-25 02:10:56 +00:00
< textarea autocomplete = "off" class = "form-control rounded" id = "filters-text"
2022-11-06 09:11:23 +00:00
placeholder="Add your own custom content filters."
rows="3" name="filters" form="custom-filter" maxlength="1000">{% if v.custom_filter_list %}{{v.custom_filter_list}}{% endif %}< / textarea >
< div class = "d-flex" >
< small > Use a new line for each filter entry. Limit of 1000 characters.< / small >
2022-12-30 12:14:18 +00:00
< input autocomplete = "off" class = "btn btn-primary ml-auto" id = "bioSave" type = "submit" data-nonce = "{{g.nonce}}" data-onclick = "disable(this)" value = "Save Changes" >
2022-11-06 09:11:23 +00:00
< / div >
< / form >
< / div >
2022-11-06 06:35:49 +00:00
< / div >
< / div >
< / section >
< / div >
< / div >
< / div >
{% endblock %}