mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-13 13:39:27 +02:00

* start converting * small fixes * reorganize theme files * cleanup search bar * increase spacing * small tweaks * fix select styles in Chrome * cleanup menus * improve button icons * restore badges * remove unused classes * restore some overrides * restore bookmark form * add summary outline * avoid layout shifts * restore bookmark details * increase border radius for modals * improve details modal * restore reader mode * restore settings * cleanup variables * start with dark theme * more dark theme... * more light theme... * more dark theme... * add postcss build * remove sass processor * update docker build * fix alt color * remove endless symbol * fix tests * update assets * remove sass files * fix docker build * cleanup spacing * improve theme * update test scripts * update CI workflow * fix test
25 lines
1.2 KiB
HTML
25 lines
1.2 KiB
HTML
{% url 'bookmarks:settings.index' as index_url %}
|
|
{% url 'bookmarks:settings.general' as general_url %}
|
|
{% url 'bookmarks:settings.integrations' as integrations_url %}
|
|
|
|
<ul class="tab tab-block">
|
|
<li class="tab-item {% if request.get_full_path == index_url or request.get_full_path == general_url%}active{% endif %}">
|
|
<a href="{% url 'bookmarks:settings.general' %}">General</a>
|
|
</li>
|
|
<li class="tab-item {% if request.get_full_path == integrations_url %}active{% endif %}">
|
|
<a href="{% url 'bookmarks:settings.integrations' %}">Integrations</a>
|
|
</li>
|
|
{% if request.user.is_superuser %}
|
|
<li class="tab-item">
|
|
<a href="{% url 'admin:index' %}" target="_blank">
|
|
<span>Admin</span>
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="ml-1" style="width: 1.2em; height: 1.2em; vertical-align: -0.2em;">
|
|
<path d="M11 3a1 1 0 100 2h2.586l-6.293 6.293a1 1 0 101.414 1.414L15 6.414V9a1 1 0 102 0V4a1 1 0 00-1-1h-5z" />
|
|
<path d="M5 5a2 2 0 00-2 2v8a2 2 0 002 2h8a2 2 0 002-2v-3a1 1 0 10-2 0v3H5V7h3a1 1 0 000-2H5z" />
|
|
</svg>
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
<br>
|