Update readme
This commit is contained in:
parent
6fa0b8032d
commit
f6ef96c830
1 changed files with 17 additions and 2 deletions
19
README.rst
19
README.rst
|
@ -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
|
||||||
+++++++++
|
+++++++++
|
||||||
|
|
Loading…
Reference in a new issue