Skip to content

Commit

Permalink
Fix #174
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Dec 6, 2015
1 parent e68d9d1 commit 2d14a46
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.rst
Expand Up @@ -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 = [
Expand All @@ -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
Expand Down

0 comments on commit 2d14a46

Please sign in to comment.