diff --git a/mellon/templates/mellon/authentication_failed.html b/mellon/templates/mellon/authentication_failed.html index bd9353e..6695c02 100644 --- a/mellon/templates/mellon/authentication_failed.html +++ b/mellon/templates/mellon/authentication_failed.html @@ -1,13 +1,13 @@ -{% extends "base.html" %} +{% extends "mellon/base.html" %} {% load i18n %} -{% block extra_scripts %} +{% block mellon_extra_scripts %} {% if error_redirect_after_timeout %}

{% trans "Authentication failed" %}

diff --git a/mellon/templates/mellon/inactive_user.html b/mellon/templates/mellon/inactive_user.html index 7edc81b..920660a 100644 --- a/mellon/templates/mellon/inactive_user.html +++ b/mellon/templates/mellon/inactive_user.html @@ -1,7 +1,7 @@ -{% extends "base.html" %} +{% extends "mellon/base.html" %} {% load i18n %} -{% block content %} +{% block mellon_content %}

{% blocktrans with name_id=saml_attributes.name_id_content %}Your user, {{ user }}, is inactive please contact your administrator. diff --git a/mellon/templates/mellon/user_not_found.html b/mellon/templates/mellon/user_not_found.html index 6a34c54..07b43f3 100644 --- a/mellon/templates/mellon/user_not_found.html +++ b/mellon/templates/mellon/user_not_found.html @@ -1,7 +1,7 @@ -{% extends "base.html" %} +{% extends "mellon/base.html" %} {% load i18n %} -{% block content %} +{% block mellon_content %}

{% blocktrans with name_id=saml_attributes.name_id_content %}No user found for NameID {{ name_id }}{% endblocktrans %}