mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
15 lines
540 B
HTML
15 lines
540 B
HTML
![]() |
{% extends 'generic/object_children.html' %}
|
||
|
{% load helpers %}
|
||
|
{% load i18n %}
|
||
|
|
||
|
{% block bulk_edit_controls %}
|
||
|
{{ block.super }}
|
||
|
{% if 'bulk_rename' in actions %}
|
||
|
<button type="submit" name="_rename"
|
||
|
formaction="{% url 'virtualization:virtualdisk_bulk_rename' %}?return_url={{ return_url }}"
|
||
|
class="btn btn-outline-warning btn-sm">
|
||
|
<i class="mdi mdi-pencil-outline" aria-hidden="true"></i> {% trans "Rename" %}
|
||
|
</button>
|
||
|
{% endif %}
|
||
|
{% endblock bulk_edit_controls %}
|