mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
14 lines
533 B
HTML
14 lines
533 B
HTML
|
<tr>
|
||
|
<td><a href="{% url 'secrets:secret' pk=secret.pk %}">{{ secret.role }}</a></td>
|
||
|
<td>{{ secret.name }}</td>
|
||
|
<td id="secret_{{ secret.pk }}">********</td>
|
||
|
<td class="text-right">
|
||
|
<button class="btn btn-xs btn-success unlock-secret" secret-id="{{ secret.pk }}">
|
||
|
<i class="fa fa-lock"></i> Unlock
|
||
|
</button>
|
||
|
<button class="btn btn-xs btn-danger lock-secret collapse" secret-id="{{ secret.pk }}">
|
||
|
<i class="fa fa-unlock-alt"></i> Lock
|
||
|
</button>
|
||
|
</td>
|
||
|
</tr>
|