2019-12-05 16:10:49 -06:00
|
|
|
{% extends '_base.html' %}
|
|
|
|
{% load buttons %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="pull-right noprint">
|
|
|
|
{% export_button content_type %}
|
|
|
|
</div>
|
2020-02-06 20:58:14 -05:00
|
|
|
<h1>{% block title %}Console Ports{% endblock %}</h1>
|
2019-12-05 16:10:49 -06:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-9">
|
2020-02-06 20:58:14 -05:00
|
|
|
{% include 'utilities/obj_table.html' with bulk_edit_url='dcim:consoleport_bulk_edit' bulk_delete_url='dcim:consoleport_bulk_delete' %}
|
2019-12-05 16:10:49 -06:00
|
|
|
</div>
|
|
|
|
<div class="col-md-3 noprint">
|
|
|
|
{% include 'inc/search_panel.html' %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|