mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
10 lines
379 B
HTML
10 lines
379 B
HTML
{% extends 'utilities/obj_table.html' %}
|
|
|
|
{% block extra_actions %}
|
|
{% if perms.dcim.add_interface %}
|
|
<button type="submit" name="_edit" formaction="{% url 'dcim:device_bulk_add_interface' %}" class="btn btn-primary btn-sm">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Add Interfaces
|
|
</button>
|
|
{% endif %}
|
|
{% endblock %}
|