37 lines
1.3 KiB
Django/Jinja
37 lines
1.3 KiB
Django/Jinja
<div>
|
|
|
|
<div class="flex flex-col">
|
|
<div class="overflow-x-auto">
|
|
<div class="inline-block min-w-full align-middle">
|
|
<div class="overflow-hidden shadow">
|
|
<table class="min-w-full divide-y divide-gray-200 table-fixed dark:divide-gray-600">
|
|
<thead class="bg-gray-100 dark:bg-gray-700">
|
|
<tr>
|
|
|
|
<th scope="col" class="p-4 text-xs font-medium text-left text-gray-500 uppercase dark:text-gray-400">
|
|
Name
|
|
</th>
|
|
<th scope="col" class="p-4 text-xs font-medium text-left text-gray-500 uppercase dark:text-gray-400">
|
|
Clients associated
|
|
</th>
|
|
<th scope="col" class="p-4 text-xs font-medium text-left text-gray-500 uppercase dark:text-gray-400">
|
|
Actions
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="bg-white divide-y divide-gray-200 dark:bg-gray-800 dark:divide-gray-700">
|
|
{% for secret in secrets %}
|
|
{% include '/secrets/secret.html.j2'%}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% for secret in secrets %}
|
|
{% include '/secrets/modal_client_secret.html.j2' %}
|
|
{% endfor %}
|