{% extends "bookmarks/layout.html" %} {% load widget_tweaks %} {% block content %}
{% include 'settings/nav.html' %} {# Profile section #} {% if success_message %}
{{ success_message }}
{% endif %} {% if error_message %}
{{ error_message }}
{% endif %}

Profile

Change password

{% csrf_token %}
{{ form.theme|add_class:"form-select width-25 width-sm-100" }}
Whether to use a light or dark theme, or automatically adjust the theme based on your system's settings.
{{ form.bookmark_date_display|add_class:"form-select width-25 width-sm-100" }}
Whether to show bookmark dates as relative (how long ago), or as absolute dates. Alternatively the date can be hidden.
{{ form.bookmark_description_display|add_class:"form-select width-25 width-sm-100" }}
Whether to show bookmark descriptions and tags in the same line, or as separate blocks.
{{ form.bookmark_description_max_lines|add_class:"form-input width-25 width-sm-100" }}
Limits the number of lines that are displayed for the bookmark description.
When enabled, this setting displays the bookmark URL below the title.
Whether to show bookmark notes permanently, without having to toggle them individually. Alternatively the keyboard shortcut e can be used to temporarily show all notes.
Which actions to display for each bookmark.
{{ form.bookmark_link_target|add_class:"form-select width-25 width-sm-100" }}
Whether to open bookmarks a new page or in the same page.
{{ form.tag_search|add_class:"form-select width-25 width-sm-100" }}
In strict mode, tags must be prefixed with a hash character (#). In lax mode, tags can also be searched without the hash character. Note that tags without the hash character are indistinguishable from search terms, which means the search result will also include bookmarks where a search term matches otherwise.
{{ form.tag_grouping|add_class:"form-select width-25 width-sm-100" }}
In alphabetical mode, tags will be grouped by the first letter. If disabled, tags will not be grouped.
Auto Tagging
{{ form.auto_tagging_rules|add_class:"form-input monospace"|attr:"rows:6" }}
Automatically adds tags to bookmarks based on predefined rules. Each line is a single rule that maps a URL to one or more tags. For example:
youtube.com video
reddit.com/r/Music music reddit
Automatically loads favicons for bookmarked websites and displays them next to each bookmark. Enabling this feature automatically downloads all missing favicons. By default, this feature uses a Google service to download favicons. If you don't want to use this service, check the options documentation on how to configure a custom favicon provider. Icons are downloaded in the background, and it may take a while for them to show up.
{% if request.user_profile.enable_favicons and enable_refresh_favicons %} {% endif %}
Automatically loads preview images for bookmarked websites and displays them next to each bookmark. Enabling this feature automatically downloads all missing preview images.
{{ form.web_archive_integration|add_class:"form-select width-25 width-sm-100" }}
Enabling this feature will automatically create snapshots of bookmarked websites on the Internet Archive Wayback Machine. This allows to preserve, and later access the website as it was at the point in time it was bookmarked, in case it goes offline or its content is modified. Please consider donating to the Internet Archive if you make use of this feature.
Allows to share bookmarks with other users, and to view shared bookmarks. Disabling this feature will hide all previously shared bookmarks from other users.
Makes shared bookmarks publicly accessible, without requiring a login. That means that anyone with a link to this instance can view shared bookmarks via the shared bookmarks page.
{% if has_snapshot_support %}
Automatically creates HTML snapshots when adding bookmarks. Alternatively, when disabled, snapshots can be created manually in the details view of a bookmark.
{% endif %}
Sets the default state for the "Mark as unread" option when creating a new bookmark. Setting this option will make all new bookmarks default to unread. This can be overridden when creating each new bookmark.
Custom CSS
{{ form.custom_css|add_class:"form-input monospace"|attr:"rows:6" }}
Allows to add custom CSS to the page.
{# Global settings section #} {% if global_settings_form %}

Global settings

{% csrf_token %}
{{ global_settings_form.landing_page|add_class:"form-select width-25 width-sm-100" }}
The page that unauthenticated users are redirected to when accessing the root URL.
{{ global_settings_form.guest_profile_user|add_class:"form-select width-25 width-sm-100" }}
The user profile to use for users that are not logged in. This will affect how publicly shared bookmarks are displayed regarding theme, bookmark list settings, etc. You can either use your own profile or create a dedicated user for this purpose. By default, a standard profile with fixed settings is used.
Prefetches internal links when hovering over them. This can improve the perceived performance when navigating application, but also increases the load on the server as well as bandwidth usage.
{% endif %} {# Import section #}

Import

Import bookmarks and tags in the Netscape HTML format. This will execute a sync where new bookmarks are added and existing ones are updated.

{% csrf_token %}
When importing bookmarks from a service that supports marking bookmarks as public or private (using the PRIVATE attribute), enabling this option will import all bookmarks that are marked as not private as shared bookmarks. Otherwise, all bookmarks will be imported as private bookmarks.
{# Export section #}

Export

Export all bookmarks in Netscape HTML format.

Download (.html) {% if export_error %}

{{ export_error }}

{% endif %}
{# About section #}

About

Version {{ version_info }}
Links GitHub
Documentation
Changelog
{% endblock %}