mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
41 lines
2.3 KiB
HTML
41 lines
2.3 KiB
HTML
{% load helpers %}
|
|
{% load perms %}
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>{{ title }}</strong>
|
|
</div>
|
|
<table class="table table-hover panel-body component-list">
|
|
{% for obj in components %}
|
|
{% include component_template %}
|
|
{% endfor %}
|
|
</table>
|
|
<div class="panel-footer noprint">
|
|
{% if components and perms.dcim.change_consoleport %}
|
|
<button type="submit" name="_rename" formaction="{% url 'dcim:consoleport_bulk_rename' %}?return_url={{ device.get_absolute_url }}" class="btn btn-warning btn-xs">
|
|
<span class="glyphicon glyphicon-pencil" aria-hidden="true"></span> Rename
|
|
</button>
|
|
<button type="submit" name="_edit" formaction="{% url 'dcim:consoleport_bulk_edit' %}?device={{ device.pk }}&return_url={{ device.get_absolute_url }}" class="btn btn-warning btn-xs">
|
|
<span class="glyphicon glyphicon-pencil" aria-hidden="true"></span> Edit
|
|
</button>
|
|
<button type="submit" name="_disconnect" formaction="{% url 'dcim:consoleport_bulk_disconnect' %}?return_url={{ device.get_absolute_url }}" class="btn btn-danger btn-xs">
|
|
<span class="glyphicon glyphicon-resize-full" aria-hidden="true"></span> Disconnect
|
|
</button>
|
|
{% endif %}
|
|
{% if components and perms.dcim.delete_consoleport %}
|
|
<button type="submit" name="_delete" formaction="{% url 'dcim:consoleport_bulk_delete' %}?return_url={{ device.get_absolute_url }}" class="btn btn-danger btn-xs">
|
|
<span class="glyphicon glyphicon-trash" aria-hidden="true"></span> Delete
|
|
</button>
|
|
{% endif %}
|
|
{% if components and perms.dcim.add_consoleport %}
|
|
<div class="pull-right">
|
|
<a href="{% url 'dcim:consoleport_add' %}?device={{ device.pk }}&return_url={{ device.get_absolute_url }}" class="btn btn-xs btn-primary">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Add console port
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</form>
|