trivial: invert order of site parameters (#58086)

This commit is contained in:
Frédéric Péters 2021-10-22 10:41:56 +02:00
parent 76d90b31d2
commit e01aba7b38
1 changed files with 5 additions and 5 deletions

View File

@ -2207,13 +2207,13 @@ def cell_maintain_page_cell_cache(sender, instance=None, **kwargs):
class SiteSettings(models.Model):
initial_login_page_path = models.CharField(
_('Initial login page path'),
help_text=_('Page to redirect to the first time user logs in.'),
max_length=100,
)
welcome_page_path = models.CharField(
_('Welcome page path'),
help_text=_('Page to redirect to on the first visit, to suggest user to log in.'),
max_length=100,
)
initial_login_page_path = models.CharField(
_('Initial login page path'),
help_text=_('Page to redirect to the first time user logs in.'),
max_length=100,
)