mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
196 lines
7.9 KiB
HTML
196 lines
7.9 KiB
HTML
{% extends '_base.html' %}
|
|
{% load static %}
|
|
{% load custom_links %}
|
|
{% load helpers %}
|
|
|
|
{% block title %}{{ provider }}{% endblock %}
|
|
|
|
{% block header %}
|
|
<div class="row noprint">
|
|
<div class="col-sm-8 col-md-9">
|
|
<ol class="breadcrumb">
|
|
<li><a href="{% url 'circuits:provider_list' %}">Providers</a></li>
|
|
<li>{{ provider }}</li>
|
|
</ol>
|
|
</div>
|
|
<div class="col-sm-4 col-md-3">
|
|
<form action="{% url 'circuits:provider_list' %}" method="get">
|
|
<div class="input-group">
|
|
<input type="text" name="q" class="form-control" />
|
|
<span class="input-group-btn">
|
|
<button type="submit" class="btn btn-primary">
|
|
<span class="fa fa-search" aria-hidden="true"></span>
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="pull-right noprint">
|
|
{% if show_graphs %}
|
|
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#graphs_modal" data-obj="{{ provider.name }}" data-url="{% url 'circuits-api:provider-graphs' pk=provider.pk %}" title="Show graphs">
|
|
<i class="fa fa-signal" aria-hidden="true"></i>
|
|
Graphs
|
|
</button>
|
|
{% endif %}
|
|
{% if perms.circuits.change_provider %}
|
|
<a href="{% url 'circuits:provider_edit' slug=provider.slug %}" class="btn btn-warning">
|
|
<span class="fa fa-pencil" aria-hidden="true"></span>
|
|
Edit this provider
|
|
</a>
|
|
{% endif %}
|
|
{% if perms.circuits.delete_provider %}
|
|
<a href="{% url 'circuits:provider_delete' slug=provider.slug %}" class="btn btn-danger">
|
|
<span class="fa fa-trash" aria-hidden="true"></span>
|
|
Delete this provider
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
<h1>{{ provider }}</h1>
|
|
{% include 'inc/created_updated.html' with obj=provider %}
|
|
<div class="pull-right noprint">
|
|
{% custom_links provider %}
|
|
</div>
|
|
<ul class="nav nav-tabs">
|
|
<li role="presentation"{% if not active_tab %} class="active"{% endif %}>
|
|
<a href="{{ provider.get_absolute_url }}">Provider</a>
|
|
</li>
|
|
{% if perms.extras.view_objectchange %}
|
|
<li role="presentation"{% if active_tab == 'changelog' %} class="active"{% endif %}>
|
|
<a href="{% url 'circuits:provider_changelog' slug=provider.slug %}">Changelog</a>
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>Provider</strong>
|
|
</div>
|
|
<table class="table table-hover panel-body attr-table">
|
|
<tr>
|
|
<td>ASN</td>
|
|
<td>{{ provider.asn|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Account</td>
|
|
<td>{{ provider.account|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Customer Portal</td>
|
|
<td>
|
|
{% if provider.portal_url %}
|
|
<a href="{{ provider.portal_url }}">{{ provider.portal_url }}</a>
|
|
{% else %}
|
|
<span class="text-muted">—</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>NOC Contact</td>
|
|
<td class="rendered-markdown">{{ provider.noc_contact|gfm|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Admin Contact</td>
|
|
<td class="rendered-markdown">{{ provider.admin_contact|gfm|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Circuits</td>
|
|
<td>
|
|
<a href="{% url 'circuits:circuit_list' %}?provider={{ provider.slug }}">{{ provider.circuits.count }}</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{% include 'inc/custom_fields_panel.html' with obj=provider %}
|
|
{% include 'extras/inc/tags_panel.html' with tags=provider.tags.all url='circuits:provider_list' %}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>Comments</strong>
|
|
</div>
|
|
<div class="panel-body rendered-markdown">
|
|
{% if provider.comments %}
|
|
{{ provider.comments|gfm }}
|
|
{% else %}
|
|
<span class="text-muted">None</span>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-8">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>Circuits</strong>
|
|
</div>
|
|
<table class="table table-hover panel-body">
|
|
<tr>
|
|
<th>Circuit ID</th>
|
|
<th>Type</th>
|
|
<th>Tenant</th>
|
|
<th>A Side</th>
|
|
<th>Z Side</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
{% for c in circuits %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url 'circuits:circuit' pk=c.pk %}">{{ c.cid }}</a>
|
|
</td>
|
|
<td>
|
|
<a href="{% url 'circuits:circuit_list' %}?type={{ c.type.slug }}">{{ c.type }}</a>
|
|
</td>
|
|
<td>
|
|
{% if c.tenant %}
|
|
<a href="{% url 'tenancy:tenant' slug=c.tenant.slug %}">{{ c.tenant }}</a>
|
|
{% else %}
|
|
<span class="text-muted">—</span>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if c.termination_a %}
|
|
<a href="{% url 'dcim:site' slug=c.termination_a.site.slug %}">{{ c.termination_a.site }}</a>
|
|
{% else %}
|
|
<span class="text-muted">—</span>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if c.termination_z %}
|
|
<a href="{% url 'dcim:site' slug=c.termination_z.site.slug %}">{{ c.termination_z.site }}</a>
|
|
{% else %}
|
|
<span class="text-muted">—</span>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if c.description %}
|
|
{{ c.description }}
|
|
{% else %}
|
|
<span class="text-muted">—</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="6" class="text-muted">None</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% if perms.circuits.add_circuit %}
|
|
<div class="panel-footer text-right noprint">
|
|
<a href="{% url 'circuits:circuit_add' %}?provider={{ provider.pk }}" class="btn btn-xs btn-primary">
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Add circuit
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% include 'inc/modal.html' with modal_name='graphs' %}
|
|
{% endblock %}
|
|
|
|
{% block javascript %}
|
|
<script src="{% static 'js/graphs.js' %}?v{{ settings.VERSION }}"></script>
|
|
{% endblock %}
|