mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
15 lines
563 B
HTML
15 lines
563 B
HTML
{% extends 'dcim/device/components_base.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block bulk_extra_controls %}
|
|
{{ block.super }}
|
|
{% if perms.dcim.add_devicebay %}
|
|
<div class="bulk-button-group">
|
|
<a href="{% url 'dcim:devicebay_add' %}?device={{ object.pk }}&return_url={% url 'dcim:device_devicebays' pk=object.pk %}"
|
|
class="btn btn-primary btn-sm">
|
|
<i class="mdi mdi-plus-thick" aria-hidden="true"></i> {% trans "Add Device Bays" %}
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock bulk_extra_controls %}
|