{% extends "django_webid/provider/base.html" %} {% load i18n %} {% load uni_form_tags %} {% block head_title %}{% blocktrans %}WebID Certs List{% endblocktrans %}{% endblock %} {% block extra_head %} {% endblock %} {% block body %} {% if messages %} {% endif %}
{# FIXME move to CSS!!! #} {% if object.pubkey.is_active %}

Are you sure? Do you want to revoke this cert?

If you revoke this cert now, its public key details will be removed from your public WebID profile, and you will not be able to use the matching cert in your browser on any site.

{% csrf_token %}
{% else %}

This certificate has already been revoked.

So no, you cannot revoke it again. And by the way, you also cannot use if for anything useful now.

{% endif %}

{% trans "WebID Certificate Details" %}

Sha1 Fingerprint: {{ object.fingerprint_sha1 }}

From: {{object.valid_from}}

Until: {{object.expires}}

Public Key on this Certificate

Bits: {{object.pubkey.bits}}

Modulus: {{object.pubkey.mod}}

Exponent: {{object.pubkey.exp}}

{% endblock %} {% block extra_body %} {% endblock %}