{% extends 'account/base.html' %} {% load buttons %} {% load helpers %} {% load render_table from django_tables2 %} {% load i18n %} {% block title %}{% trans "Bookmarks" %}{% endblock %} {% block content %}
{% csrf_token %} {# Table #}
{% include 'htmx/table.html' %}
{# Form buttons #}
{% if 'bulk_delete' in actions %} {% bulk_delete_button model query_params=request.GET %} {% endif %}
{% endblock %}