mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
11 lines
438 B
HTML
11 lines
438 B
HTML
{% load helpers %}
|
|
<div class="rack_header">
|
|
<strong><a href="{% url 'dcim:rack' pk=rack.pk %}">{{ rack.name }}</a></strong>
|
|
{% if rack.role %}
|
|
<br /><small class="label" style="color: {{ rack.role.color|fgcolor }}; background-color: #{{ rack.role.color }}">{{ rack.role }}</small>
|
|
{% endif %}
|
|
{% if rack.facility_id %}
|
|
<br /><small class="text-muted">{{ rack.facility_id }}</small>
|
|
{% endif %}
|
|
</div>
|