core: make autosubmit_form generic template

This commit is contained in:
Jens Langhammer
2020-07-08 14:27:32 +02:00
parent 1e57926603
commit d831599608
6 changed files with 22 additions and 16 deletions

View File

@ -7,6 +7,7 @@ from django.http import HttpRequest, HttpResponse
from django.shortcuts import get_object_or_404, redirect, render, reverse
from django.utils.decorators import method_decorator
from django.utils.http import urlencode
from django.utils.translation import gettext_lazy as _
from django.views import View
from django.views.decorators.csrf import csrf_exempt
from signxml.util import strip_pem_header
@ -190,10 +191,10 @@ class SAMLFlowFinalView(StageView):
if provider.sp_binding == SAMLBindings.POST:
return render(
self.request,
"providers/saml/autosubmit_form.html",
"generic/autosubmit_form.html",
{
"url": response.acs_url,
"application": application,
"title": _("Redirecting to %(app)s..." % {"app": application.name}),
"attrs": {
"ACSUrl": response.acs_url,
SESSION_KEY_SAML_RESPONSE: response.saml_response,