devicebays.html 563 B

1234567891011121314
  1. {% extends 'dcim/device/components_base.html' %}
  2. {% load i18n %}
  3. {% block bulk_extra_controls %}
  4. {{ block.super }}
  5. {% if perms.dcim.add_devicebay %}
  6. <div class="bulk-button-group">
  7. <a href="{% url 'dcim:devicebay_add' %}?device={{ object.pk }}&return_url={% url 'dcim:device_devicebays' pk=object.pk %}"
  8. class="btn btn-primary btn-sm">
  9. <i class="mdi mdi-plus-thick" aria-hidden="true"></i> {% trans "Add Device Bays" %}
  10. </a>
  11. </div>
  12. {% endif %}
  13. {% endblock bulk_extra_controls %}