mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
15 lines
794 B
HTML
15 lines
794 B
HTML
{% extends 'generic/object_list.html' %}
|
|
|
|
{% block bulk_buttons %}
|
|
{% if perms.virtualization.change_virtualmachine %}
|
|
<div class="btn-group">
|
|
<button type="button" class="btn btn-sm btn-primary dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
<span class="mdi mdi-plus-thick" aria-hidden="true"></span> Add Components <span class="caret"></span>
|
|
</button>
|
|
<ul class="dropdown-menu">
|
|
{% if perms.virtualization.add_vminterface %}<li><a href="{% url 'virtualization:virtualmachine_bulk_add_vminterface' %}{% if request.GET %}?{{ request.GET.urlencode }}{% endif %}" class="formaction">Interfaces</a></li>{% endif %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|