Fix #174
This commit is contained in:
parent
e68d9d1083
commit
2d14a46918
1 changed files with 13 additions and 1 deletions
14
README.rst
14
README.rst
|
@ -78,6 +78,10 @@ Install djangocms-blog::
|
||||||
|
|
||||||
pip install djangocms-blog
|
pip install djangocms-blog
|
||||||
|
|
||||||
|
or -when installing in Django 1.6/1.7::
|
||||||
|
|
||||||
|
pip install djangocms-blog[admin-enhancer]
|
||||||
|
|
||||||
Add ``djangocms_blog`` and its dependencies to INSTALLED_APPS::
|
Add ``djangocms_blog`` and its dependencies to INSTALLED_APPS::
|
||||||
|
|
||||||
INSTALLED_APPS = [
|
INSTALLED_APPS = [
|
||||||
|
@ -90,11 +94,19 @@ Add ``djangocms_blog`` and its dependencies to INSTALLED_APPS::
|
||||||
'taggit_autosuggest',
|
'taggit_autosuggest',
|
||||||
'meta',
|
'meta',
|
||||||
'meta_mixin',
|
'meta_mixin',
|
||||||
'admin_enhancer',
|
|
||||||
'djangocms_blog',
|
'djangocms_blog',
|
||||||
...
|
...
|
||||||
]
|
]
|
||||||
|
|
||||||
|
If you installed the **admin-enhancer** variant, add ``admin_enhancer`` to ``INSTALLED_APPS::
|
||||||
|
|
||||||
|
INSTALLED_APPS = [
|
||||||
|
...
|
||||||
|
'admin_enhancer',
|
||||||
|
...
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
Then sync and migrate::
|
Then sync and migrate::
|
||||||
|
|
||||||
$ python manage.py syncdb
|
$ python manage.py syncdb
|
||||||
|
|
Loading…
Reference in a new issue