mirror of
https://github.com/netbox-community/netbox.git
synced 2026-03-20 08:34:58 +01:00
70 lines
2.4 KiB
HTML
70 lines
2.4 KiB
HTML
{% extends 'generic/object.html' %}
|
|
{% load static %}
|
|
{% load helpers %}
|
|
{% load plugins %}
|
|
{% load render_table from django_tables2 %}
|
|
{% load i18n %}
|
|
|
|
{% block breadcrumbs %}
|
|
{{ block.super }}
|
|
<li class="breadcrumb-item"><a href="{% url 'circuits:providernetwork_list' %}?provider_id={{ object.provider_id }}">{{ object.provider }}</a></li>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row mb-3">
|
|
<div class="col col-12 col-md-6">
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Provider Network" %}</h2>
|
|
<table class="table table-hover attr-table">
|
|
<tr>
|
|
<th scope="row">{% trans "Provider" %}</th>
|
|
<td>{{ object.provider|linkify }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Name" %}</th>
|
|
<td>{{ object.name }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Service ID" %}</th>
|
|
<td>{{ object.service_id|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Description" %}</th>
|
|
<td>{{ object.description|placeholder }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{% include 'inc/panels/tags.html' %}
|
|
{% plugin_left_page object %}
|
|
</div>
|
|
<div class="col col-12 col-md-6">
|
|
{% include 'inc/panels/related_objects.html' %}
|
|
{% include 'inc/panels/comments.html' %}
|
|
{% include 'inc/panels/custom_fields.html' %}
|
|
{% plugin_right_page object %}
|
|
</div>
|
|
</div>
|
|
<div class="row mb-3">
|
|
<div class="col col-md-12">
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Circuits" %}</h2>
|
|
{% htmx_table 'circuits:circuit_list' provider_network_id=object.pk %}
|
|
</div>
|
|
<div class="card">
|
|
<h2 class="card-header">
|
|
{% trans "Virtual Circuits" %}
|
|
{% if perms.circuits.add_virtualcircuit %}
|
|
<div class="card-actions">
|
|
<a href="{% url 'circuits:virtualcircuit_add' %}?provider_network={{ object.pk }}&return_url={{ object.get_absolute_url }}" class="btn btn-ghost-primary btn-sm">
|
|
<i class="mdi mdi-plus-thick" aria-hidden="true"></i> {% trans "Add a Virtual Circuit" %}
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</h2>
|
|
{% htmx_table 'circuits:virtualcircuit_list' provider_network_id=object.pk %}
|
|
</div>
|
|
{% plugin_full_width_page object %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|