{% 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 %} {% comment %} {% if messages %} {% endif %} {% endcomment %}

{% 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 %}

Fingerprints:

sha1:

{{ object.fingerprint_sha1 }}

{% comment %} should split this too; but must remove : first {% endcomment %}

sha256:

{{ object.fingerprint_sha256 }}

md5:

{{object.fingerprint_md5 }}

Validity:

From: {{object.valid_from}}

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 %}