platform.html 689 B

1234567891011121314151617181920
  1. {% extends 'generic/object.html' %}
  2. {% load helpers %}
  3. {% load plugins %}
  4. {% load render_table from django_tables2 %}
  5. {% load i18n %}
  6. {% block breadcrumbs %}
  7. {{ block.super }}
  8. {% if object.manufacturer %}
  9. <li class="breadcrumb-item"><a href="{% url 'dcim:platform_list' %}?manufacturer_id={{ object.manufacturer.pk }}">{{ object.manufacturer }}</a></li>
  10. {% endif %}
  11. {% endblock %}
  12. {% block extra_controls %}
  13. {% if perms.dcim.add_device %}
  14. <a href="{% url 'dcim:device_add' %}?platform={{ object.pk }}" class="btn btn-primary">
  15. <span class="mdi mdi-plus-thick" aria-hidden="true"></span> {% trans "Add Device" %}
  16. </a>
  17. {% endif %}
  18. {% endblock extra_controls %}