{% 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 col-2 col-sm-12" }}
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 col-2 col-sm-12" }}
Whether to show bookmark dates as relative (how long ago), or as absolute dates. Alternatively the date can be hidden.
{{ form.bookmark_link_target|add_class:"form-select col-2 col-sm-12" }}
Whether to open bookmarks a new page or in the same page.
{{ form.web_archive_integration|add_class:"form-select col-2 col-sm-12" }}
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.
{# 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 %}
{% 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.

Download (.html) {% if export_error %}

{{ export_error }}

{% endif %}
{# About section #}

About

Version: {{ app_version }}

Code: GitHub

{% endblock %}