mention that some plugins may require additional dependencies that should be mentioned in INSTALLED_APPS; mention that easy_thumbnails is required with content_image plugin

This commit is contained in:
Artur Barseghyan 2015-02-20 10:34:18 +01:00
parent c1984332c2
commit 2e39f805fe
3 changed files with 13 additions and 2 deletions

View file

@ -182,7 +182,9 @@ Or latest stable version from BitBucket:
(2) Add `fobi` to ``INSTALLED_APPS`` of the your projects' Django settings.
Furthermore, all themes and plugins to be used, shall be added to the
``INSTALLED_APPS`` as well.
``INSTALLED_APPS`` as well. Note, that if a plugin has additional
dependencies, you should be mentioning those in the ``INSTALLED_APPS``
as well.
.. code-block:: python
@ -215,6 +217,7 @@ Or latest stable version from BitBucket:
# Fobi form elements - content elements
'fobi.contrib.plugins.form_elements.test.dummy',
'easy_thumbnails', # Required by `content_image` plugin
'fobi.contrib.plugins.form_elements.content.content_image',
'fobi.contrib.plugins.form_elements.content.content_text',
'fobi.contrib.plugins.form_elements.content.content_video',
@ -229,6 +232,8 @@ Or latest stable version from BitBucket:
# ...
)
(3) Make appropriate changes to the ``TEMPLATE_CONTEXT_PROCESSORS`` of the your
projects' Django settings.

View file

@ -182,7 +182,9 @@ Or latest stable version from BitBucket:
(2) Add `fobi` to ``INSTALLED_APPS`` of the your projects' Django settings.
Furthermore, all themes and plugins to be used, shall be added to the
``INSTALLED_APPS`` as well.
``INSTALLED_APPS`` as well. Note, that if a plugin has additional
dependencies, you should be mentioning those in the ``INSTALLED_APPS``
as well.
.. code-block:: python
@ -215,6 +217,7 @@ Or latest stable version from BitBucket:
# Fobi form elements - content elements
'fobi.contrib.plugins.form_elements.test.dummy',
'easy_thumbnails', # Required by `content_image` plugin
'fobi.contrib.plugins.form_elements.content.content_image',
'fobi.contrib.plugins.form_elements.content.content_text',
'fobi.contrib.plugins.form_elements.content.content_video',
@ -229,6 +232,8 @@ Or latest stable version from BitBucket:
# ...
)
(3) Make appropriate changes to the ``TEMPLATE_CONTEXT_PROCESSORS`` of the your
projects' Django settings.

View file

@ -12,6 +12,7 @@ Installation
INSTALLED_APPS = (
# ...
'easy_thumbnails',
'fobi.contrib.plugins.form_elements.content.content_image',
# ...
)