mirror of
https://github.com/netbox-community/netbox.git
synced 2026-02-23 01:04:51 +01:00
* Enable HTMX boosting * Refactor HTMX properties for tables * Fix dashboard object list widget * Disable scrolling to page content * Fix initialization of TomSelect dropdowns after HTMX loading * Replace formaction properties with hx-post * Fix quick search field on object list view * Reinitialize copy-to-clipboard buttons upon HTMX load * Disable scrolling effect for intra-page navigation * Introduce user preference for toggling HTMX navigation * Enable HTMX navigation only when selected by user * Pass htmx_navigation context * Fix display of confirmation form when deleting an object * Disable HTMX boosting for rack elevation SVG downloads * Fix dyanmic form rendering * Introduce htmx_boost template tag; enable HTMX for user menu * Use out-of-band sap to update footer stamp * Fix display of toasts after form submission * Fix user preference selection * Misc cleanup * Rename render_partial() to htmx_partial() * Add docstring to htmx_boost template tag * Disable HTMX for user preferences form to force a full page refresh on changes
57 lines
2.5 KiB
HTML
57 lines
2.5 KiB
HTML
{% extends base_template %}
|
|
{% load helpers %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
{% block table_controls %}
|
|
{% include 'inc/table_controls_htmx.html' with table_modal=table_config %}
|
|
{% endblock table_controls %}
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<div class="card">
|
|
<div class="htmx-container table-responsive" id="object_list">
|
|
{% include 'htmx/table.html' %}
|
|
</div>
|
|
</div>
|
|
<div class="d-print-none mt-2">
|
|
{% block bulk_controls %}
|
|
<div class="btn-group" role="group">
|
|
{# Bulk edit buttons #}
|
|
{% block bulk_edit_controls %}
|
|
{% with bulk_edit_view=child_model|validated_viewname:"bulk_edit" %}
|
|
{% if 'bulk_edit' in actions and bulk_edit_view %}
|
|
<button type="submit" name="_edit"
|
|
{% formaction %}="{% url bulk_edit_view %}?return_url={{ return_url }}"
|
|
class="btn btn-warning">
|
|
<i class="mdi mdi-pencil" aria-hidden="true"></i> {% trans "Edit Selected" %}
|
|
</button>
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% endblock bulk_edit_controls %}
|
|
</div>
|
|
<div class="btn-group" role="group">
|
|
{# Bulk delete buttons #}
|
|
{% block bulk_delete_controls %}
|
|
{% with bulk_delete_view=child_model|validated_viewname:"bulk_delete" %}
|
|
{% if 'bulk_delete' in actions and bulk_delete_view %}
|
|
<button type="submit"
|
|
{% formaction %}="{% url bulk_delete_view %}?return_url={{ return_url }}"
|
|
class="btn btn-danger">
|
|
<i class="mdi mdi-trash-can-outline" aria-hidden="true"></i> {% trans "Delete Selected" %}
|
|
</button>
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% endblock bulk_delete_controls %}
|
|
</div>
|
|
{# Other bulk action buttons #}
|
|
{% block bulk_extra_controls %}{% endblock %}
|
|
{% endblock bulk_controls %}
|
|
</div>
|
|
</form>
|
|
{% endblock content %}
|
|
|
|
{% block modals %}
|
|
{{ block.super }}
|
|
{% table_config_form table %}
|
|
{% endblock modals %}
|