authentic/src/authentic2/idp/saml/templates/idp/saml/unknown_provider.html

14 lines
384 B
HTML

{% extends "authentic2/base-page.html" %}
{% load i18n %}
{% block content %}
<p>
{% blocktrans %}We were unable to load provider <tt>{{ entity_id }}</tt>.{% endblocktrans %}
{% if request.user.is_staff %}
{% blocktrans %}
You can <a href="{{ add_url }}">add</a> it now or <a href="">retry</a>.
{% endblocktrans %}
{% endif %}
</p>
{% endblock %}