2024-12-12 19:46:39 +00:00
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
|
2025-01-31 16:11:51 +00:00
|
|
|
<div class="tab-pane fade" id="evidences">
|
2024-12-12 19:46:39 +00:00
|
|
|
<h5 class="card-title">{% trans 'List of evidences' %}</h5>
|
2025-01-31 16:11:51 +00:00
|
|
|
<div class="list-group col">
|
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th scope="col">uuid</th>
|
|
|
|
<th scope="col">Did Document</th>
|
|
|
|
<th scope="col">{% trans "Date" %}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for snap in object.evidences %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="{% url 'evidence:details' snap.uuid %}">{{ snap.uuid }}</a>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{% if snap.did_document %}
|
|
|
|
<a href="{{ snap.did_document }}" target="_blank">DID</a>
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<small class="text-muted">{{ snap.created }}</small>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2024-12-12 19:46:39 +00:00
|
|
|
</div>
|
|
|
|
</div>
|