mirror of
https://github.com/retspen/webvirtcloud
synced 2024-10-31 19:44:16 +00:00
fix secret list details
This commit is contained in:
parent
6a0d04d300
commit
509c57d8ab
1 changed files with 3 additions and 12 deletions
|
@ -57,8 +57,8 @@
|
|||
<thead>
|
||||
<tr class="active">
|
||||
<th scope="col">{% trans "UUID" %}</th>
|
||||
<th scope="col">{% trans "Type" %}</th>
|
||||
<th scope="col">{% trans "Usage" %}</th>
|
||||
<th scope="col">{% trans "Usage Type" %}</th>
|
||||
<th scope="col">{% trans "Data" %}</th>
|
||||
<th scope="col" data-sortable="false" style="width:90px;">{% trans "Action" %}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@ -66,16 +66,7 @@
|
|||
{% for secret in secrets_all %}
|
||||
<tr>
|
||||
<th scope="row">{{ secret.uuid }}</th>
|
||||
<td>{% if secret.usageType == 0 %}
|
||||
{% trans "volume" %}
|
||||
{% endif %}
|
||||
{% if secret.usageType == 1 %}
|
||||
{% trans "iscsi" %}
|
||||
{% endif %}
|
||||
{% if secret.usageType 2 %}
|
||||
{% trans "ceph" %}
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>{{ secret.usageType }}</td>
|
||||
<td>{{ secret.usage }}</td>
|
||||
<td>
|
||||
<form action="" method="post" role="form" aria-label="Delete secret form">{% csrf_token %}
|
||||
|
|
Loading…
Reference in a new issue