mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
9 lines
368 B
HTML
9 lines
368 B
HTML
{% load helpers %}
|
|
<div class="termination{% if obj == termination %} active{% endif %}">
|
|
<strong><a href="{{ termination.get_absolute_url }}">{{ termination }}</a></strong><br />
|
|
{{ termination|meta:"verbose_name"|bettertitle }}
|
|
{% if termination.type %}
|
|
<small class="text-muted">{{ termination.get_type_display }}</small>
|
|
{% endif %}
|
|
</div>
|