diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-01-18 19:26:56 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-01-18 19:26:56 +0100 |
commit | f78b28c8cc947096c823794b58f01d15d03748c3 (patch) | |
tree | 571db84f53ecf6e67f0adcf8666ada1edb8ac710 /ishtar_common/views.py | |
parent | bb64481fa52683624736359fa9b70fd5502fb7a6 (diff) | |
parent | 1ea02c84641ecda79cf79f8065b302bf3ccee3b9 (diff) | |
download | Ishtar-f78b28c8cc947096c823794b58f01d15d03748c3.tar.bz2 Ishtar-f78b28c8cc947096c823794b58f01d15d03748c3.zip |
Merge branch 'develop' into develop-bootstrap
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 2b6dead9b..020544d19 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: |