mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
112 lines
5.5 KiB
HTML
112 lines
5.5 KiB
HTML
{% load helpers %}
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<div class="pull-right">
|
|
{% if not termination and perms.circuits.add_circuittermination %}
|
|
<a href="{% url 'circuits:circuittermination_add' circuit=circuit.pk %}?term_side={{ side }}" class="btn btn-xs btn-success">
|
|
<span class="fa fa-plus" aria-hidden="true"></span> Add
|
|
</a>
|
|
{% endif %}
|
|
{% if termination and perms.circuits.change_circuittermination %}
|
|
<a href="{% url 'circuits:circuittermination_edit' pk=termination.pk %}" class="btn btn-xs btn-warning">
|
|
<span class="fa fa-pencil" aria-hidden="true"></span> Edit
|
|
</a>
|
|
<a href="{% url 'circuits:circuit_terminations_swap' pk=circuit.pk %}" class="btn btn-xs btn-primary">
|
|
<span class="fa fa-refresh" aria-hidden="true"></span> Swap
|
|
</a>
|
|
{% endif %}
|
|
{% if termination and perms.circuits.delete_circuittermination %}
|
|
<a href="{% url 'circuits:circuittermination_delete' pk=termination.pk %}?return_url={{ circuit.get_absolute_url }}" class="btn btn-xs btn-danger">
|
|
<span class="fa fa-trash" aria-hidden="true"></span> Delete
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
<strong>Termination - {{ side }} Side</strong>
|
|
</div>
|
|
{% if termination %}
|
|
<table class="table table-hover panel-body attr-table">
|
|
<tr>
|
|
<td>Site</td>
|
|
<td>
|
|
{% if termination.site.region %}
|
|
<a href="{{ termination.site.region.get_absolute_url }}">{{ termination.site.region }}</a>
|
|
<i class="fa fa-angle-right"></i>
|
|
{% endif %}
|
|
<a href="{% url 'dcim:site' slug=termination.site.slug %}">{{ termination.site }}</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Termination</td>
|
|
<td>
|
|
{% if termination.cable %}
|
|
{% if perms.dcim.delete_cable %}
|
|
<div class="pull-right">
|
|
<a href="{% url 'dcim:cable_delete' pk=termination.cable.pk %}?return_url={{ termination.circuit.get_absolute_url }}" title="Remove cable" class="btn btn-danger btn-xs">
|
|
<i class="glyphicon glyphicon-resize-full" aria-hidden="true"></i> Disconnect
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
<a href="{{ termination.cable.get_absolute_url }}">{{ termination.cable }}</a>
|
|
{% if termination.connected_endpoint %}
|
|
to <a href="{% url 'dcim:device' pk=termination.connected_endpoint.device.pk %}">{{ termination.connected_endpoint.device }}</a>
|
|
<i class="fa fa-angle-right"></i> {{ termination.connected_endpoint }}
|
|
{% endif %}
|
|
{% else %}
|
|
{% if perms.dcim.add_cable %}
|
|
<div class="pull-right">
|
|
<a href="{% url 'circuits:circuittermination_connect' termination_a_id=termination.pk %}?return_url={{ circuit.get_absolute_url }}" class="btn btn-success btn-xs" title="Connect">
|
|
<i class="glyphicon glyphicon-resize-small" aria-hidden="true"></i> Connect
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
<span class="text-muted">Not defined</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Speed</td>
|
|
<td>
|
|
{% if termination.upstream_speed %}
|
|
<i class="fa fa-arrow-down" title="Downstream"></i> {{ termination.port_speed|humanize_speed }}
|
|
<i class="fa fa-arrow-up" title="Upstream"></i> {{ termination.upstream_speed|humanize_speed }}
|
|
{% else %}
|
|
{{ termination.port_speed|humanize_speed }}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>IP Addressing</td>
|
|
<td>
|
|
{% if termination.connected_endpoint %}
|
|
{% for ip in termination.connected_endpoint.ip_addresses.all %}
|
|
{% if not forloop.first %}<br />{% endif %}
|
|
<a href="{% url 'ipam:ipaddress' pk=ip.pk %}">{{ ip }}</a> ({{ ip.vrf|default:"Global" }})
|
|
{% empty %}
|
|
<span class="text-muted">None</span>
|
|
{% endfor %}
|
|
{% else %}
|
|
<span class="text-muted">—</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Cross-Connect</td>
|
|
<td>{{ termination.xconnect_id|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Patch Panel/Port</td>
|
|
<td>{{ termination.pp_info|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Description</td>
|
|
<td>{{ termination.description|placeholder }}</td>
|
|
</tr>
|
|
</table>
|
|
{% else %}
|
|
<div class="panel-body">
|
|
<span class="text-muted">None</span>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|