mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-10 13:54:41 +00:00
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:
parent
c1984332c2
commit
2e39f805fe
3 changed files with 13 additions and 2 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ Installation
|
|||
|
||||
INSTALLED_APPS = (
|
||||
# ...
|
||||
'easy_thumbnails',
|
||||
'fobi.contrib.plugins.form_elements.content.content_image',
|
||||
# ...
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue