mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
17 lines
548 B
HTML
17 lines
548 B
HTML
{% extends 'generic/object_edit.html' %}
|
|
{% load form_helpers %}
|
|
|
|
{% block form_fields %}
|
|
{% if form.instance.device %}
|
|
<div class="form-group">
|
|
<label class="col-md-3 control-label required" for="id_device">Device</label>
|
|
<div class="col-md-9">
|
|
<p class="form-control-static">
|
|
<a href="{{ form.instance.device.get_absolute_url }}">{{ form.instance.device }}</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% render_form form %}
|
|
{% endblock %}
|