mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-23 04:22:01 -06:00
Fixes #564: Display custom fields for all applicable objects
This commit is contained in:
parent
b10e29aaac
commit
687e68db69
@ -104,6 +104,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
{% with circuit.get_custom_fields as custom_fields %}
|
||||||
|
{% include 'inc/custom_fields_panel.html' %}
|
||||||
|
{% endwith %}
|
||||||
{% include 'inc/created_updated.html' with obj=circuit %}
|
{% include 'inc/created_updated.html' with obj=circuit %}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
|
@ -121,6 +121,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
{% with ipaddress.get_custom_fields as custom_fields %}
|
||||||
|
{% include 'inc/custom_fields_panel.html' %}
|
||||||
|
{% endwith %}
|
||||||
{% include 'inc/created_updated.html' with obj=ipaddress %}
|
{% include 'inc/created_updated.html' with obj=ipaddress %}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
|
@ -101,6 +101,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
{% with prefix.get_custom_fields as custom_fields %}
|
||||||
|
{% include 'inc/custom_fields_panel.html' %}
|
||||||
|
{% endwith %}
|
||||||
{% include 'inc/created_updated.html' with obj=prefix %}
|
{% include 'inc/created_updated.html' with obj=prefix %}
|
||||||
<br />
|
<br />
|
||||||
</div>
|
</div>
|
||||||
|
@ -110,6 +110,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
{% with vlan.get_custom_fields as custom_fields %}
|
||||||
|
{% include 'inc/custom_fields_panel.html' %}
|
||||||
|
{% endwith %}
|
||||||
{% include 'inc/created_updated.html' with obj=vlan %}
|
{% include 'inc/created_updated.html' with obj=vlan %}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
|
@ -82,6 +82,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
{% with vrf.get_custom_fields as custom_fields %}
|
||||||
|
{% include 'inc/custom_fields_panel.html' %}
|
||||||
|
{% endwith %}
|
||||||
{% include 'inc/created_updated.html' with obj=vrf %}
|
{% include 'inc/created_updated.html' with obj=vrf %}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
|
Loading…
Reference in New Issue
Block a user