django-mellon/mellon/templates/mellon/user_not_found.html

12 lines
273 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block content %}
<p>
{% blocktrans with name_id=saml_attributes.name_id_content %}No user found for NameID {{ name_id }}{% endblocktrans %}
</p>
<pre style="display: none">
{{ saml_attributes|pprint }}
</pre>
{% endblock %}