mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
15 lines
446 B
HTML
15 lines
446 B
HTML
{% extends 'generic/object_edit.html' %}
|
|
{% load form_helpers %}
|
|
|
|
{% block form_fields %}
|
|
{% if form.instance.device %}
|
|
<div class="row mb-3">
|
|
<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>
|
|
</div>
|
|
{% endif %}
|
|
{% render_form form %}
|
|
{% endblock %}
|