Files
netbox/netbox/templates/account/bookmarks.html
Jeremy Stretch 33d891e67b
Some checks are pending
CI / build (20.x, 3.10) (push) Waiting to run
CI / build (20.x, 3.11) (push) Waiting to run
CI / build (20.x, 3.12) (push) Waiting to run
Fixes #20028: Restore bulk deletion button for bookmarks, notifications, and subscriptions (#20032)
2025-08-06 13:56:22 -07:00

31 lines
806 B
HTML

{% extends 'account/base.html' %}
{% load buttons %}
{% load helpers %}
{% load render_table from django_tables2 %}
{% load i18n %}
{% block title %}{% trans "Bookmarks" %}{% endblock %}
{% block content %}
<form method="post" class="form form-horizontal">
{% csrf_token %}
<input type="hidden" name="return_url" value="{% url 'account:bookmarks' %}" />
{# Table #}
<div class="row">
<div class="col col-md-12">
<div class="card">
<div class="htmx-container table-responsive" id="object_list">
{% include 'htmx/table.html' %}
</div>
</div>
</div>
</div>
{# Form buttons #}
<div class="btn-list d-print-none mt-2">
{% bulk_delete_button model query_params=request.GET %}
</div>
</form>
{% endblock %}