Merge pull request #175 from nephila/feature/fix_readme

Fix #174
This commit is contained in:
Iacopo Spalletti 2015-12-06 23:33:14 +01:00
commit 5fe79315d6

View file

@ -78,6 +78,10 @@ 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::
INSTALLED_APPS = [
@ -90,11 +94,19 @@ Add ``djangocms_blog`` and its dependencies to INSTALLED_APPS::
'taggit_autosuggest',
'meta',
'meta_mixin',
'admin_enhancer',
'djangocms_blog',
...
]
If you installed the **admin-enhancer** variant, add ``admin_enhancer`` to ``INSTALLED_APPS::
INSTALLED_APPS = [
...
'admin_enhancer',
...
]
Then sync and migrate::
$ python manage.py syncdb