mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Fixes #10053: Custom fields header should not be displayed when editing circuit terminations with no custom fields
This commit is contained in:
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
## v3.3.1 (FUTURE)
|
## v3.3.1 (FUTURE)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* [#10053](https://github.com/netbox-community/netbox/issues/10053) - Custom fields header should not be displayed when editing circuit terminations with no custom fields
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## v3.3.0 (2022-08-17)
|
## v3.3.0 (2022-08-17)
|
||||||
|
@ -49,10 +49,12 @@
|
|||||||
{% render_field form.description %}
|
{% render_field form.description %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="field-group my-5">
|
{% if form.custom_fields %}
|
||||||
|
<div class="field-group mb-5">
|
||||||
<div class="row mb-2">
|
<div class="row mb-2">
|
||||||
<h5 class="offset-sm-3">Custom Fields</h5>
|
<h5 class="offset-sm-3">Custom Fields</h5>
|
||||||
</div>
|
</div>
|
||||||
{% render_custom_fields form %}
|
{% render_custom_fields form %}
|
||||||
</div>
|
</div>
|
||||||
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Reference in New Issue
Block a user