device_component.html 554 B

12345678910111213141516
  1. {% extends 'generic/object.html' %}
  2. {% load helpers %}
  3. {% load perms %}
  4. {% load custom_links %}
  5. {% load plugins %}
  6. {% block title %}{{ object.device }} / {{ object }}{% endblock %}
  7. {% block breadcrumbs %}
  8. <li><a href="{% url 'dcim:device_list' %}">Devices</a></li>
  9. <li><a href="{{ object.device.get_absolute_url }}">{{ object.device }}</a></li>
  10. {% if breadcrumb_url %}
  11. <li><a href="{% url breadcrumb_url pk=object.device.pk %}">{{ object|meta:"verbose_name_plural"|bettertitle }}</a></li>
  12. {% endif %}
  13. <li>{{ object }}</li>
  14. {% endblock %}