stages/consent: cleanup

This commit is contained in:
Jens Langhammer
2020-09-24 20:06:37 +02:00
parent 7be50c2574
commit 397892b282
6 changed files with 38 additions and 11 deletions

View File

@ -79,14 +79,14 @@ class ConfigurableStage(models.Model):
migration."""
configure_flow = models.ForeignKey(
'passbook_flows.Flow',
"passbook_flows.Flow",
on_delete=models.SET_NULL,
null=True,
blank=True,
help_text=_(
(
"Flow used by an authenticated user to change their password. "
"If empty, user will be unable to change their password."
"Flow used by an authenticated user to configure this Stage. "
"If empty, user will not be able to configure this stage."
)
),
)