pinecrypt-gateway-frontend/templates/views/tags.html

7 lines
192 B
HTML
Raw Normal View History

2021-05-27 10:15:46 +00:00
{% for tag in certificate.tags %}
2021-06-01 19:20:39 +00:00
<span data-id="{{ certificate.id }}"
2021-05-27 10:15:46 +00:00
title="{{ tag }}"
class="badge badge-default"
onClick="onTagClicked(event);">{{ tag }}</span>
{% endfor %}