- {% extends 'generic/object.html' %}
- {% load helpers %}
- {% load perms %}
- {% load custom_links %}
- {% load plugins %}
- {% block title %}{{ object.device }} / {{ object }}{% endblock %}
- {% block breadcrumbs %}
- <li><a href="{% url 'dcim:device_list' %}">Devices</a></li>
- <li><a href="{{ object.device.get_absolute_url }}">{{ object.device }}</a></li>
- {% if breadcrumb_url %}
- <li><a href="{% url breadcrumb_url pk=object.device.pk %}">{{ object|meta:"verbose_name_plural"|bettertitle }}</a></li>
- {% endif %}
- <li>{{ object }}</li>
- {% endblock %}
|