14 lines
315 B
HTML
14 lines
315 B
HTML
|
{% load i18n fontawesome_5 %}
|
||
|
|
||
|
{% if has_revocations %}
|
||
|
<strong>
|
||
|
<a href="{{url}}" title="{% trans 'Revocations exists' %}">
|
||
|
{% fa5_icon 'ban' %}
|
||
|
{{content}}
|
||
|
</a>
|
||
|
</strong>
|
||
|
{% else %}
|
||
|
<a href="{{url}}" title="{{tooltip}}">
|
||
|
{{content}}
|
||
|
</a>
|
||
|
{% endif %}
|