console_connections_list.html 730 B

12345678910111213141516171819202122232425
  1. {% extends '_base.html' %}
  2. {% load render_table from django_tables2 %}
  3. {% block title %}Console Connections{% endblock %}
  4. {% block content %}
  5. <div class="pull-right">
  6. {% if perms.dcim.change_consoleport %}
  7. <a href="{% url 'dcim:console_connections_import' %}" class="btn btn-info">
  8. <span class="fa fa-download" aria-hidden="true"></span>
  9. Import connections
  10. </a>
  11. {% endif %}
  12. {% include 'inc/export_button.html' with obj_type='connections' %}
  13. </div>
  14. <h1>Console Connections</h1>
  15. <div class="row">
  16. <div class="col-md-9">
  17. {% render_table table 'table.html' %}
  18. </div>
  19. <div class="col-md-3">
  20. {% include 'inc/filter_panel.html' %}
  21. </div>
  22. </div>
  23. {% endblock %}