1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
netbox-community-netbox/netbox/templates/dcim/device_component_edit.html

15 lines
446 B
HTML
Raw Normal View History

2020-11-11 16:58:29 -05:00
{% extends 'generic/object_edit.html' %}
2020-09-04 16:09:05 -04:00
{% load form_helpers %}
{% block form_fields %}
{% if form.instance.device %}
<div class="row mb-3">
2021-08-13 13:35:23 -04:00
<label class="col-sm-3 col-form-label text-lg-end">Device</label>
<div class="col">
<input class="form-control" value="{{ form.instance.device }}" disabled />
</div>
2020-09-04 16:09:05 -04:00
</div>
{% endif %}
{% render_form form %}
{% endblock %}