{% extends "django_webid/provider/base.html" %} {% load i18n %} {% load uni_form_tags %} {% block head_title %}{% blocktrans %}WebID Cert Details{% endblocktrans %}{% endblock %} {% block extra_head %} {% endblock %} {% block body %} {% if messages %} {% endif %}

{% trans "WebID Certificate Details" %}

{% if not object.pubkey.is_active %}

The Public Key contained on this Certificate has been revoked. You cannot use it for login anywhere.

{% endif %} {% if object.comment %}

comment: {{ object.comment }}

{% endif %} {% if object.user_agent_string %}

installed on browser: {{ object.user_agent_string }}

{% endif %}

sha1 fingerprint: {{ object.fingerprint_sha1 }}

sha256 fingerprint: {{ object.fingerprint_sha256 }}

md5 fingerprint: {{object.fingerprint_md5 }}

Valid From: {{object.valid_from}}

Valid Until: {{object.expires}}

Public Key on this Certificate

Bits: {{object.pubkey.bits}}

Modulus: {{object.pubkey.mod}}

Exponent: {{object.pubkey.exp}}

{% if object.pubkey.is_active %} {% endif %}
{% endblock %} {% block extra_body %} {% endblock %}