From 2d14a469185468f5ed1262a8bcb2b1981a47f93a Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Sun, 6 Dec 2015 19:25:00 +0100 Subject: [PATCH] Fix #174 --- README.rst | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index e25f58d..81318c8 100644 --- a/README.rst +++ b/README.rst @@ -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