This commit is contained in:
Rachid Mrad 2024-06-12 13:17:48 -04:00
parent 48e2673b1b
commit 856d1f81fc
No known key found for this signature in database

View file

@ -236,9 +236,7 @@ class DomainRequestWizard(DomainRequestWizardPermissionView, TemplateView):
# Creating a request will be handled in the post method for the # Creating a request will be handled in the post method for the
# intro page. Only TEMPORARY context needed is has_profile_flag # intro page. Only TEMPORARY context needed is has_profile_flag
has_profile_flag = flag_is_active(self.request, "profile_feature") has_profile_flag = flag_is_active(self.request, "profile_feature")
context_stuff = { context_stuff = {"has_profile_feature_flag": has_profile_flag}
"has_profile_feature_flag": has_profile_flag
}
return render(request, "domain_request_intro.html", context=context_stuff) return render(request, "domain_request_intro.html", context=context_stuff)
else: else:
return self.goto(self.steps.first) return self.goto(self.steps.first)