2016-03-01 11:23:03 -05:00
|
|
|
{% extends '_base.html' %}
|
2018-02-02 16:12:57 -05:00
|
|
|
{% load buttons %}
|
2016-03-01 11:23:03 -05:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="pull-right">
|
2018-02-02 16:12:57 -05:00
|
|
|
{% export_button content_type %}
|
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' %}
|
2019-01-23 14:26:17 -05:00
|
|
|
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
|
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 %}
|