From f6ef96c830047bef1ff770091ae7df3150ab63a6 Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Sun, 24 Aug 2014 06:34:34 +0200 Subject: [PATCH] Update readme --- README.rst | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index caec9a9..0caddbb 100644 --- a/README.rst +++ b/README.rst @@ -73,6 +73,7 @@ Please, refer to each application documentation on details. * django-filer: http://django-filer.readthedocs.org * django-meta: https://github.com/nephila/django-meta#installation +* django-parler: http://django-parler.readthedocs.org/en/latest/quickstart.html#configuration * django-taggit-autosuggest: https://bitbucket.org/fabian/django-taggit-autosuggest Quick hint @@ -96,12 +97,26 @@ suited for your deployment. META_SITE_PROTOCOL = 'http' META_USE_SITES = True +* Configure parler according to your languages:: + + PARLER_LANGUAGES = { + 1: ( + {'code': 'en',}, + {'code': 'it',}, + {'code': 'fr',}, + ), + } + * Add the following to your ``urls.py``:: url(r'^taggit_autosuggest/', include('taggit_autosuggest.urls')), -* To start your blog, you need to create a new page from the CMS and hook it to the blog application. -* Then, go to Advanced setting and select Blog from the Application selector. +* To start your blog create a new page from the CMS and hook it to the blog application: + + * Create a new django CMS page + * Go to Advanced settings and sele select Blog from the Application selector; + * Eventually customise the Application instance name; + * Restart the project instance to properly load blog urls. Templates +++++++++