1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

60 lines
2.0 KiB
HTML
Raw Normal View History

2021-03-18 11:10:48 -04:00
{% extends 'generic/object.html' %}
{% load static %}
{% load helpers %}
{% load plugins %}
2021-12-13 15:36:51 -05:00
{% load render_table from django_tables2 %}
2021-03-18 11:10:48 -04:00
{% block breadcrumbs %}
2021-07-20 12:14:01 -04:00
{{ block.super }}
2021-04-18 00:22:52 -07:00
<li class="breadcrumb-item"><a href="{% url 'circuits:providernetwork_list' %}?provider_id={{ object.provider_id }}">{{ object.provider }}</a></li>
2021-03-18 11:10:48 -04:00
{% endblock %}
{% block content %}
<div class="row mb-3">
2021-04-30 15:55:37 -07:00
<div class="col col-md-6">
2021-04-18 00:22:52 -07:00
<div class="card">
<h5 class="card-header">
Provider Network
</h5>
<div class="card-body">
<table class="table table-hover attr-table">
<tr>
<th scope="row">Provider</th>
<td>
<a href="{{ object.provider.get_absolute_url }}">{{ object.provider }}</a>
</td>
</tr>
<tr>
<th scope="row">Name</th>
<td>{{ object.name }}</td>
</tr>
<tr>
<th scope="row">Description</th>
2021-07-20 15:30:49 -04:00
<td>{{ object.description|placeholder }}</td>
2021-04-18 00:22:52 -07:00
</tr>
</table>
2021-03-18 11:10:48 -04:00
</div>
</div>
{% plugin_left_page object %}
</div>
2021-04-30 15:55:37 -07:00
<div class="col col-md-6">
2021-10-19 14:21:31 -04:00
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
2021-10-19 14:21:31 -04:00
{% include 'inc/panels/comments.html' %}
{% plugin_right_page object %}
</div>
</div>
<div class="row mb-3">
<div class="col col-md-12">
<div class="card">
<h5 class="card-header">Circuits</h5>
<div class="card-body table-responsive">
{% render_table circuits_table 'inc/table.html' %}
{% include 'inc/paginator.html' with paginator=circuits_table.paginator page=circuits_table.page %}
</div>
2021-03-18 11:10:48 -04:00
</div>
{% plugin_full_width_page object %}
</div>
2021-03-18 11:10:48 -04:00
</div>
{% endblock %}