mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-22 20:12:00 -06:00
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
{% load i18n %}
|
|
<div class="d-flex">
|
|
{% include 'django/forms/widgets/select.html' %}
|
|
{% if widget.attrs.selector and not widget.attrs.disabled %}
|
|
{# Opens the object selector modal #}
|
|
<button
|
|
type="button"
|
|
title="{% trans "Open selector" %}"
|
|
class="btn btn-outline-secondary ms-1"
|
|
data-bs-toggle="modal"
|
|
data-bs-target="#htmx-modal"
|
|
hx-get="{% url 'htmx_object_selector' %}?_model={{ widget.attrs.selector }}&target={{ widget.attrs.id }}"
|
|
hx-target="#htmx-modal-content"
|
|
>
|
|
<i class="mdi mdi-database-search-outline"></i>
|
|
</button>
|
|
{% endif %}
|
|
{% if quick_add and not widget.attrs.disabled %}
|
|
{# Opens the quick add modal #}
|
|
<button
|
|
type="button"
|
|
title="{% trans "Quick add" %}"
|
|
class="btn btn-outline-secondary ms-1"
|
|
data-bs-toggle="modal"
|
|
data-bs-target="#htmx-modal"
|
|
hx-get="{{ quick_add.url }}?_quickadd=True&target={{ widget.attrs.id }}{% for k, v in quick_add.params.items %}&{{ k }}={{ v }}{% endfor %}"
|
|
hx-target="#htmx-modal-content"
|
|
>
|
|
<i class="mdi mdi-plus-circle"></i>
|
|
</button>
|
|
{% endif %}
|
|
</div>
|