mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-13 21:49:26 +02:00
50 lines
1.4 KiB
HTML
50 lines
1.4 KiB
HTML
{% extends "bookmarks/layout.html" %}
|
|
{% load static %}
|
|
{% load shared %}
|
|
{% load bookmarks %}
|
|
|
|
{% block content %}
|
|
<div class="bookmarks-page columns"
|
|
ld-bookmark-page
|
|
bookmarks-url="{% url 'bookmarks:partials.bookmark_list.shared' %}"
|
|
tags-url="{% url 'bookmarks:partials.tag_cloud.shared' %}">
|
|
|
|
{# Bookmark list #}
|
|
<section class="content-area column col-8 col-md-12">
|
|
<div class="content-area-header">
|
|
<h2>Shared bookmarks</h2>
|
|
<div class="spacer"></div>
|
|
{% bookmark_search bookmark_list.filters tag_cloud.tags mode='shared' %}
|
|
</div>
|
|
|
|
<form class="bookmark-actions" action="{% url 'bookmarks:action' %}?return_url={{ bookmark_list.return_url }}"
|
|
method="post">
|
|
{% csrf_token %}
|
|
|
|
<div class="bookmark-list-container">
|
|
{% include 'bookmarks/bookmark_list.html' %}
|
|
</div>
|
|
</form>
|
|
</section>
|
|
|
|
{# Filters #}
|
|
<section class="content-area column col-4 hide-md">
|
|
<div class="content-area-header">
|
|
<h2>User</h2>
|
|
</div>
|
|
<div>
|
|
{% user_select filters users %}
|
|
<br>
|
|
</div>
|
|
<div class="content-area-header">
|
|
<h2>Tags</h2>
|
|
</div>
|
|
<div class="tag-cloud-container">
|
|
{% include 'bookmarks/tag_cloud.html' %}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
<script src="{% static "bundle.js" %}?v={{ app_version }}"></script>
|
|
{% endblock %}
|