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

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.
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.
{{ 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.
Automatically loads favicons for bookmarked websites and displays them next to each bookmark. 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 %} {% if refresh_favicons_success_message %}

{{ refresh_favicons_success_message }}

{% endif %}
{{ 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 update_profile_success_message %}

{{ update_profile_success_message }}

{% 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.
{% if import_success_message %}

{{ import_success_message }}

{% endif %} {% if import_errors_message %}

{{ import_errors_message }}

{% endif %}
{# Export section #}

Export

Export all bookmarks in Netscape HTML format.

Note that exporting bookmark notes is currently not supported due to limitations of the format. For proper backups please use a database backup as described in the documentation.

Download (.html) {% if export_error %}

{{ export_error }}

{% endif %}
{# About section #}

About

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