1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Clean up layout of global search results

This commit is contained in:
Jeremy Stretch
2024-04-19 15:27:25 -04:00
parent db87fe96b7
commit f42d0336c2

View File

@ -17,7 +17,7 @@
{% endblock tabs %} {% endblock tabs %}
{% block content %} {% block content %}
<div class="row px-3"> <div class="row">
<div class="col col-6 offset-3 py-3"> <div class="col col-6 offset-3 py-3">
<form action="{% url 'search' %}" method="get" class="form form-horizontal"> <form action="{% url 'search' %}" method="get" class="form form-horizontal">
{% render_form form %} {% render_form form %}
@ -29,11 +29,13 @@
</form> </form>
</div> </div>
</div> </div>
<div class="row px-3"> <div class="row">
<div class="col">
<div class="card"> <div class="card">
<div class="htmx-container table-responsive" id="object_list"> <div class="htmx-container table-responsive" id="object_list">
{% include 'htmx/table.html' %} {% include 'htmx/table.html' %}
</div> </div>
</div> </div>
</div> </div>
</div>
{% endblock content %} {% endblock content %}