mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-16 22:44:11 +02:00
Update domain_request.py
This commit is contained in:
parent
7ef2e95376
commit
bb8e81ea86
1 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ class DomainRequestWizard(DomainRequestWizardPermissionView, TemplateView):
|
||||||
although not without consulting the base implementation, first.
|
although not without consulting the base implementation, first.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
StepEnum = Step
|
StepEnum: Step = Step # type: ignore
|
||||||
template_name = ""
|
template_name = ""
|
||||||
|
|
||||||
# uniquely namespace the wizard in urls.py
|
# uniquely namespace the wizard in urls.py
|
||||||
|
@ -501,7 +501,7 @@ class DomainRequestWizard(DomainRequestWizardPermissionView, TemplateView):
|
||||||
|
|
||||||
# TODO - this is a WIP until the domain request experience for portfolios is complete
|
# TODO - this is a WIP until the domain request experience for portfolios is complete
|
||||||
class PortfolioDomainRequestWizard(DomainRequestWizard):
|
class PortfolioDomainRequestWizard(DomainRequestWizard):
|
||||||
StepEnum = PortfolioDomainRequestStep
|
StepEnum: PortfolioDomainRequestStep = PortfolioDomainRequestStep # type: ignore
|
||||||
|
|
||||||
TITLES = {
|
TITLES = {
|
||||||
StepEnum.REQUESTING_ENTITY: _("Requesting entity"),
|
StepEnum.REQUESTING_ENTITY: _("Requesting entity"),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue