This commit is contained in:
Cayo Puigdefabregas 2024-11-20 12:18:30 +01:00
parent ba6c955463
commit fdc431b43a
1 changed files with 3 additions and 2 deletions

View File

@ -235,14 +235,15 @@
<div class="tab-pane fade" id="dpps">
<h5 class="card-title">{% trans 'List of dpps' %}</h5>
<div class="list-group col-6">
<div class="list-group col">
{% for d in dpps %}
<div class="list-group-item">
<div class="d-flex w-100 justify-content-between">
<small class="text-muted">{{ d.timestamp }}</small>
<span>{{ d.type }}</span>
</div>
<p class="mb-1">
<a href="{% url 'did:device_web' d.uuid %}">{{ d.signature }}</a>
<a href="{% url 'did:device_web' d.signature %}">{{ d.signature }}</a>
</p>
</div>
{% endfor %}