From e01aba7b38744b0acef77bd543286d131bcbe73a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 22 Oct 2021 10:41:56 +0200 Subject: [PATCH] trivial: invert order of site parameters (#58086) --- combo/data/models.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/combo/data/models.py b/combo/data/models.py index ae6b9b3c..8640e03b 100644 --- a/combo/data/models.py +++ b/combo/data/models.py @@ -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, + )