mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
28 lines
877 B
HTML
28 lines
877 B
HTML
<div class="row mb-3 justify-content-between">
|
|
<div class="table-controls noprint col col-12 col-md-8 col-lg-4">
|
|
<div class="input-group input-group-sm">
|
|
<input
|
|
type="text"
|
|
class="form-control object-filter"
|
|
placeholder="Quick find"
|
|
title="Find in the results below (regular expressions supported)"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="table-controls noprint col col-md-3 mb-0">
|
|
{% if request.user.is_authenticated and table_modal %}
|
|
<div class="table-configure input-group input-group-sm">
|
|
<button
|
|
type="button"
|
|
data-bs-toggle="modal"
|
|
title="Configure Table"
|
|
data-bs-target="#{{ table_modal }}"
|
|
class="btn btn-sm btn-outline-dark"
|
|
>
|
|
<i class="mdi mdi-cog"></i> Configure Table
|
|
</button>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|