Projet

Général

Profil

0001-trivial-invert-order-of-site-parameters-58086.patch

Frédéric Péters, 22 octobre 2021 10:42

Télécharger (1,19 ko)

Voir les différences:

Subject: [PATCH] trivial: invert order of site parameters (#58086)

 combo/data/models.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
combo/data/models.py
2207 2207

  
2208 2208

  
2209 2209
class SiteSettings(models.Model):
2210
    initial_login_page_path = models.CharField(
2211
        _('Initial login page path'),
2212
        help_text=_('Page to redirect to the first time user logs in.'),
2213
        max_length=100,
2214
    )
2215 2210
    welcome_page_path = models.CharField(
2216 2211
        _('Welcome page path'),
2217 2212
        help_text=_('Page to redirect to on the first visit, to suggest user to log in.'),
2218 2213
        max_length=100,
2219 2214
    )
2215
    initial_login_page_path = models.CharField(
2216
        _('Initial login page path'),
2217
        help_text=_('Page to redirect to the first time user logs in.'),
2218
        max_length=100,
2219
    )
2220
-