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, + )