| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <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.interface %}
- <a href="{% url 'dcim:device' pk=termination.interface.device.pk %}">{{ termination.interface.device }}</a>
- <i class="fa fa-angle-right"></i> {{ termination.interface }}
- {% else %}
- <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_human }}
- <i class="fa fa-arrow-up" title="Upstream"></i> {{ termination.upstream_speed_human }}
- {% else %}
- {{ termination.port_speed_human }}
- {% endif %}
- </td>
- </tr>
- <tr>
- <td>IP Addressing</td>
- <td>
- {% if termination.interface %}
- {% for ip in termination.interface.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">N/A</span>
- {% endif %}
- </td>
- </tr>
- <tr>
- <td>Cross-Connect</td>
- <td>
- {% if termination.xconnect_id %}
- {{ termination.xconnect_id }}
- {% else %}
- <span class="text-muted">N/A</span>
- {% endif %}
- </td>
- </tr>
- <tr>
- <td>Patch Panel/Port</td>
- <td>
- {% if termination.pp_info %}
- {{ termination.pp_info }}
- {% else %}
- <span class="text-muted">N/A</span>
- {% endif %}
- </td>
- </tr>
- </table>
- {% else %}
- <div class="panel-body">
- <span class="text-muted">None</span>
- </div>
- {% endif %}
- </div>
|