mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-15 11:42:52 -06:00
Fixes #7107: Fix missing search button and search results in IP Address assignment "Assign IP" tab
This commit is contained in:
parent
14d87a3584
commit
691c66d2f5
@ -22,6 +22,7 @@
|
|||||||
* [#7096](https://github.com/netbox-community/netbox/issues/7096) - Home links should honor `BASE_PATH` configuration
|
* [#7096](https://github.com/netbox-community/netbox/issues/7096) - Home links should honor `BASE_PATH` configuration
|
||||||
* [#7101](https://github.com/netbox-community/netbox/issues/7101) - Enforce `MAX_PAGE_SIZE` for table and REST API pagination
|
* [#7101](https://github.com/netbox-community/netbox/issues/7101) - Enforce `MAX_PAGE_SIZE` for table and REST API pagination
|
||||||
* [#7106](https://github.com/netbox-community/netbox/issues/7106) - Fix incorrect "Map It" button URL on a site's Physical Address field
|
* [#7106](https://github.com/netbox-community/netbox/issues/7106) - Fix incorrect "Map It" button URL on a site's Physical Address field
|
||||||
|
* [#7107](https://github.com/netbox-community/netbox/issues/7107) - Fix missing search button and search results in IP Address assignment "Assign IP" tab
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
{% include 'ipam/inc/ipadress_edit_header.html' with active_tab='assign' %}
|
{% include 'ipam/inc/ipadress_edit_header.html' with active_tab='assign' %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block form %}
|
||||||
<form action="{% querystring request %}" method="post" class="form form-horizontal">
|
<form action="{% querystring request %}" method="post" class="form form-horizontal">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
{% for field in form.hidden_fields %}
|
{% for field in form.hidden_fields %}
|
||||||
@ -17,13 +17,10 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
<div class="row mb-3">
|
<div class="row mb-3">
|
||||||
<div class="col col-md-8 offset-md-2">
|
<div class="col col-md-8 offset-md-2">
|
||||||
{% include 'ipam/inc/ipadress_edit_header.html' with active_tab='assign' %}
|
<div class="field-group">
|
||||||
<div class="card">
|
<h6>Select IP Address</h6>
|
||||||
<h5 class="card-header">Select IP Address</h5>
|
{% render_field form.vrf_id %}
|
||||||
<div class="card-body">
|
{% render_field form.q %}
|
||||||
{% render_field form.vrf_id %}
|
|
||||||
{% render_field form.q %}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -42,4 +39,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock form %}
|
||||||
|
|
||||||
|
{% block buttons %}
|
||||||
|
{% endblock buttons%}
|
||||||
|
Loading…
Reference in New Issue
Block a user