diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-01-18 19:15:20 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-01-18 19:15:20 +0100 |
commit | 650b7eb8b124a7257d14eb20ee1b9e17fbd8e8ea (patch) | |
tree | ae03fc5a4124ed21660f76e9c7336ae1ff4f4d69 /ishtar_common/views.py | |
parent | f40a1a35ec2d87064c3556c81ea7e82de9da1fbd (diff) | |
parent | eded065bec024337a76ef8a7000d652488e2ebf7 (diff) | |
download | Ishtar-650b7eb8b124a7257d14eb20ee1b9e17fbd8e8ea.tar.bz2 Ishtar-650b7eb8b124a7257d14eb20ee1b9e17fbd8e8ea.zip |
Merge branch 'master' into develop
Diffstat (limited to 'ishtar_common/views.py')
-rw-r--r-- | ishtar_common/views.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar_common/views.py b/ishtar_common/views.py index d8c5b1997..613e02a61 100644 --- a/ishtar_common/views.py +++ b/ishtar_common/views.py @@ -96,12 +96,12 @@ def index(request): dct = {'warnings': []} if settings.PROJECT_SLUG == 'default': dct['warnings'].append(_( - u"PROJECT_SLUG is set to \"default\" change it in your " + u"PROJECT_SLUG is set to \"default\". Change it in your " u"local_settings (or ask your admin to do it).")) profile = get_current_profile() if profile.slug == 'default': dct['warnings'].append(_( - u"The slug of your current profile is set to \"default\" change it " + u"The slug of your current profile is set to \"default\". Change it " u"on the administration page (or ask your admin to do it).")) image = get_random_item_image_link(request) if hasattr(profile, 'homepage') and profile.homepage: |