| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {% extends 'generic/object.html' %}
- {% load helpers %}
- {% load plugins %}
- {% block content %}
- <div class="row">
- <div class="col col-md-6">
- <div class="card">
- <h5 class="card-header">Wireless LAN</h5>
- <div class="card-body">
- <table class="table table-hover attr-table">
- <tr>
- <th scope="row">SSID</th>
- <td>{{ object.ssid }}</td>
- </tr>
- <tr>
- <td>Group</td>
- <td>
- {% if object.group %}
- <a href="{{ object.group.get_absolute_url }}">{{ object.group }}</a>
- {% else %}
- <span class="text-muted">None</span>
- {% endif %}
- </td>
- </tr>
- <tr>
- <th scope="row">Description</th>
- <td>{{ object.description|placeholder }}</td>
- </tr>
- <tr>
- <th scope="row">VLAN</th>
- <td>
- {% if object.vlan %}
- <a href="{{ object.vlan.get_absolute_url }}">{{ object.vlan }}</a>
- {% else %}
- <span class="text-muted">None</span>
- {% endif %}
- </td>
- </tr>
- </table>
- </div>
- </div>
- {% include 'inc/panels/tags.html' %}
- {% plugin_left_page object %}
- </div>
- <div class="col col-md-6">
- {% include 'wireless/inc/authentication_attrs.html' %}
- {% include 'inc/panels/custom_fields.html' %}
- {% plugin_right_page object %}
- </div>
- </div>
- <div class="row">
- <div class="col col-md-12">
- <div class="card">
- <h5 class="card-header">Attached Interfaces</h5>
- <div class="card-body">
- {% include 'inc/table.html' with table=interfaces_table %}
- </div>
- </div>
- {% include 'inc/paginator.html' with paginator=interfaces_table.paginator page=interfaces_table.page %}
- {% plugin_full_width_page object %}
- </div>
- </div>
- {% endblock %}
|