2018-11-15 14:23:23 -05:00
|
|
|
{% if perms.dcim.change_cable %}
|
2020-01-27 22:56:25 +00:00
|
|
|
{% if cable.status == 'connected' %}
|
2021-09-08 14:25:14 -04:00
|
|
|
<button type="button" class="btn btn-warning btn-sm cable-toggle connected" title="Mark Planned" data-url="{% url 'dcim-api:cable-detail' pk=cable.pk %}">
|
2020-11-06 14:33:20 -05:00
|
|
|
<i class="mdi mdi-lan-disconnect" aria-hidden="true"></i>
|
2021-04-19 20:48:03 -07:00
|
|
|
</button>
|
2018-11-15 14:23:23 -05:00
|
|
|
{% else %}
|
2021-09-08 14:25:14 -04:00
|
|
|
<button type="button" class="btn btn-info btn-sm cable-toggle" title="Mark Installed" data-url="{% url 'dcim-api:cable-detail' pk=cable.pk %}">
|
2020-11-06 14:33:20 -05:00
|
|
|
<i class="mdi mdi-lan-connect" aria-hidden="true"></i>
|
2021-04-19 20:48:03 -07:00
|
|
|
</button>
|
2018-11-15 14:23:23 -05:00
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|