{% extends "administration/base.html" %} {% load i18n %} {% load passbook_utils %} {% block content %}

{% trans 'Certificate-Key Pairs' %}

{% trans "Import certificates of external providers or create certificates to sign requests with." %}

{% if object_list %}
{% include 'partials/toolbar_search.html' %} {% include 'partials/pagination.html' %}
{% for kp in object_list %} {% endfor %}
{% trans 'Name' %} {% trans 'Private Key available' %} {% trans 'Fingerprint' %} {% trans 'Provider Type' %}
{{ kp.name }}
{% if kp.key_data is not None %} {% trans 'Yes' %} {% else %} {% trans 'No' %} {% endif %} {{ kp.fingerprint }} {% trans 'Edit' %} {% trans 'Delete' %}
{% include 'partials/pagination.html' %}
{% else %}
{% include 'partials/toolbar_search.html' %}

{% trans 'No Certificates.' %}

{% if request.GET.search != "" %} {% trans "Your search query doesn't match any certificates." %} {% else %} {% trans 'Currently no certificates exist. Click the button below to create one.' %} {% endif %}
{% trans 'Create' %}
{% endif %}
{% endblock %}