| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- {% extends '_base.html' %}
- {% load static from staticfiles %}
- {% load helpers %}
- {% block title %}{{ provider }}{% endblock %}
- {% block content %}
- <div class="row">
- <div class="col-md-12">
- <ol class="breadcrumb">
- <li><a href="{% url 'circuits:provider_list' %}">Providers</a></li>
- <li>{{ provider }}</li>
- </ol>
- </div>
- </div>
- <div class="pull-right">
- <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="glyphicon glyphicon-signal" aria-hidden="true"></i>
- Graphs
- </button>
- {% if perms.circuits.change_provider %}
- <a href="{% url 'circuits:provider_edit' slug=provider.slug %}" class="btn btn-warning">
- <span class="glyphicon glyphicon-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="glyphicon glyphicon-trash" aria-hidden="true"></span>
- Delete this provider
- </a>
- {% endif %}
- </div>
- <h1>{{ provider }}</h1>
- <div class="row">
- <div class="col-md-6">
- <div class="panel panel-default">
- <div class="panel-heading">
- <strong>Provider</strong>
- </div>
- <table class="table table-hover panel-body">
- <tr>
- <td>ASN</td>
- <td>{{ provider.asn }}</td>
- </tr>
- <tr>
- <td>Account</td>
- <td>{{ provider.account }}</td>
- </tr>
- <tr>
- <td>Customer Portal</td>
- <td>
- <a href="{{ provider.portal_url }}">{{ provider.portal_url }}</a>
- </td>
- </tr>
- <tr>
- <td>NOC Contact</td>
- <td>{{ provider.noc_contact|linebreaksbr }}</td>
- </tr>
- <tr>
- <td>Admin Contact</td>
- <td>{{ provider.admin_contact|linebreaksbr }}</td>
- </tr>
- <tr>
- <td>Created</td>
- <td>{{ provider.created }}</td>
- </tr>
- <tr>
- <td>Last Updated</td>
- <td>{{ provider.last_updated }}</td>
- </tr>
- </table>
- </div>
- <div class="panel panel-default">
- <div class="panel-heading">
- <strong>Comments</strong>
- </div>
- <div class="panel-body">
- {% if provider.comments %}
- {{ provider.comments|gfm }}
- {% else %}
- <span class="text-muted">None</span>
- {% endif %}
- </div>
- </div>
- </div>
- <div class="col-md-6">
- <div class="panel panel-default">
- <div class="panel-heading">
- <strong>Circuits</strong>
- </div>
- <table class="table table-hover panel-body">
- {% for c in circuits %}
- <tr>
- <td>
- <a href="{% url 'circuits:circuit' pk=c.pk %}">{{ c.cid }}</a>
- </td>
- <td>
- <a href="{% url 'dcim:site' slug=c.site.slug %}">{{ c.site }}</a>
- </td>
- <td>
- {% if c.interface %}
- <a href="{% url 'dcim:device' pk=c.interface.device.pk %}">{{ c.interface.device }}</a>
- {% endif %}
- </td>
- <td>{{ c.port_speed_human }}</td>
- </tr>
- {% empty %}
- <tr>
- <td class="text-muted">None</td>
- </tr>
- {% endfor %}
- </table>
- </div>
- </div>
- </div>
- {% include 'inc/graphs_modal.html' %}
- {% endblock %}
- {% block javascript %}
- <script src="{% static 'js/graphs.js' %}"></script>
- {% endblock %}
|