mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Clean up spacing for nav pills Markdown fields should default to using monospace font Wrap action buttons in object page header Fix page link style for non-HTMX paginators Clean up styling of Markdown preview widget Fix spacing around placeholder text for empty panel tables Remove obsolete templates Tweak checkbox input spacing Fix toggling of clear button for quick search Fix positioning of quick search filter dropdown Fix positioning of 'highlight device' button Fix styling for custom field group names Widen buttons on nav menu items Restyle the login page Fix active nav-pill background color in dark mode Fix spacing around 'map' button for sites
26 lines
1.1 KiB
HTML
26 lines
1.1 KiB
HTML
{% load helpers %}
|
|
{% load i18n %}
|
|
|
|
<div class="row mb-3">
|
|
<div class="col-auto d-print-none">
|
|
<div class="input-group input-group-flat me-2 quicksearch">
|
|
<input type="search" results="5" name="q" id="quicksearch" class="form-control px-2 py-1" placeholder="Quick search"
|
|
hx-get="{{ request.full_path }}" hx-target="#object_list" hx-trigger="keyup changed delay:500ms, search" />
|
|
<span class="input-group-text py-1">
|
|
<a href="#" id="quicksearch_clear" class="d-none text-secondary"><i class="mdi mdi-close-circle"></i></a>
|
|
</span>
|
|
{% block extra_table_controls %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
<div class="col-auto ms-auto d-print-none">
|
|
{% if request.user.is_authenticated and table_modal %}
|
|
<div class="table-configure input-group">
|
|
<button type="button" data-bs-toggle="modal" title="{% trans "Configure Table" %}" data-bs-target="#{{ table_modal }}"
|
|
class="btn">
|
|
<i class="mdi mdi-cog"></i> {% trans "Configure Table" %}
|
|
</button>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|