Update readme

This commit is contained in:
Iacopo Spalletti 2014-08-24 06:34:34 +02:00
parent 6fa0b8032d
commit f6ef96c830

View file

@ -73,6 +73,7 @@ Please, refer to each application documentation on details.
* django-filer: http://django-filer.readthedocs.org * django-filer: http://django-filer.readthedocs.org
* django-meta: https://github.com/nephila/django-meta#installation * 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 * django-taggit-autosuggest: https://bitbucket.org/fabian/django-taggit-autosuggest
Quick hint Quick hint
@ -96,12 +97,26 @@ suited for your deployment.
META_SITE_PROTOCOL = 'http' META_SITE_PROTOCOL = 'http'
META_USE_SITES = True 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``:: * Add the following to your ``urls.py``::
url(r'^taggit_autosuggest/', include('taggit_autosuggest.urls')), 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. * To start your blog 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.
* 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 Templates
+++++++++ +++++++++