2016-03-01 11:23:03 -05:00
|
|
|
{% extends '_base.html' %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="pull-right">
|
2016-06-16 13:38:31 -04:00
|
|
|
{% if perms.dcim.change_consoleport %}
|
|
|
|
<a href="{% url 'dcim:console_connections_import' %}" class="btn btn-info">
|
2016-07-29 18:04:38 -04:00
|
|
|
<span class="fa fa-download" aria-hidden="true"></span>
|
2016-06-16 13:38:31 -04:00
|
|
|
Import connections
|
|
|
|
</a>
|
2016-03-01 11:23:03 -05:00
|
|
|
{% endif %}
|
2016-06-16 13:38:31 -04:00
|
|
|
{% include 'inc/export_button.html' with obj_type='connections' %}
|
2016-03-01 11:23:03 -05:00
|
|
|
</div>
|
2017-08-02 13:15:28 -04:00
|
|
|
<h1>{% block title %}Console Connections{% endblock %}</h1>
|
2016-03-01 11:23:03 -05:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-9">
|
2017-05-16 16:19:55 -04:00
|
|
|
{% include 'responsive_table.html' %}
|
2016-03-01 11:23:03 -05:00
|
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
2017-01-24 12:05:39 -05:00
|
|
|
{% include 'inc/search_panel.html' %}
|
2016-03-01 11:23:03 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|