1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Add wireless authentication attributes

This commit is contained in:
jeremystretch
2021-10-20 10:58:15 -04:00
parent 0c72c20d2a
commit a66501250e
14 changed files with 252 additions and 21 deletions

View File

@@ -0,0 +1,21 @@
{% load helpers %}
<div class="card">
<h5 class="card-header">Authentication</h5>
<div class="card-body">
<table class="table table-hover attr-table">
<tr>
<th scope="row">Type</th>
<td>{{ object.get_auth_type_display|placeholder }}</td>
</tr>
<tr>
<th scope="row">Cipher</th>
<td>{{ object.get_auth_cipher_display|placeholder }}</td>
</tr>
<tr>
<th scope="row">PSK</th>
<td class="font-monospace">{{ object.auth_psk|placeholder }}</td>
</tr>
</table>
</div>
</div>