mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-26 21:14:00 +00:00
docs updated
This commit is contained in:
parent
0b0eb20515
commit
cec5bd9ffb
4 changed files with 16 additions and 0 deletions
|
|
@ -84,6 +84,7 @@ Add ``fobi`` core and the plugins to the ``INSTALLED_APPS`` of the your
|
|||
|
||||
'easy_thumbnails', # Required by `content_image` plugin
|
||||
'fobi.contrib.plugins.form_elements.content.content_image',
|
||||
'fobi.contrib.plugins.form_elements.content.content_image_url',
|
||||
'fobi.contrib.plugins.form_elements.content.content_text',
|
||||
'fobi.contrib.plugins.form_elements.content.content_video',
|
||||
|
||||
|
|
@ -94,6 +95,7 @@ Add ``fobi`` core and the plugins to the ``INSTALLED_APPS`` of the your
|
|||
'fobi.contrib.plugins.form_handlers.db_store',
|
||||
'fobi.contrib.plugins.form_handlers.http_repost',
|
||||
'fobi.contrib.plugins.form_handlers.mail',
|
||||
'fobi.contrib.plugins.form_handlers.mail_sender',
|
||||
|
||||
Putting all together, you would have something like this.
|
||||
|
||||
|
|
@ -147,6 +149,7 @@ Putting all together, you would have something like this.
|
|||
# Form element plugins
|
||||
'easy_thumbnails', # Required by ``content_image`` plugin
|
||||
'fobi.contrib.plugins.form_elements.content.content_image',
|
||||
'fobi.contrib.plugins.form_elements.content.content_image_url',
|
||||
'fobi.contrib.plugins.form_elements.content.content_text',
|
||||
'fobi.contrib.plugins.form_elements.content.content_video',
|
||||
|
||||
|
|
@ -154,6 +157,7 @@ Putting all together, you would have something like this.
|
|||
'fobi.contrib.plugins.form_handlers.db_store',
|
||||
'fobi.contrib.plugins.form_handlers.http_repost',
|
||||
'fobi.contrib.plugins.form_handlers.mail',
|
||||
'fobi.contrib.plugins.form_handlers.mail_sender',
|
||||
|
||||
# ...
|
||||
)
|
||||
|
|
|
|||
|
|
@ -265,6 +265,7 @@ Or latest stable version from BitBucket:
|
|||
'fobi.contrib.plugins.form_handlers.db_store',
|
||||
'fobi.contrib.plugins.form_handlers.http_repost',
|
||||
'fobi.contrib.plugins.form_handlers.mail',
|
||||
'fobi.contrib.plugins.form_handlers.mail_sender',
|
||||
|
||||
# Other project specific apps
|
||||
'foo', # Test app
|
||||
|
|
@ -1943,6 +1944,9 @@ in directory of each plugin for details.
|
|||
- `Mail
|
||||
<https://github.com/barseghyanartur/django-fobi/tree/stable/src/fobi/contrib/plugins/form_handlers/mail/>`__:
|
||||
Send the form data by email.
|
||||
- `Mail the sender
|
||||
<https://github.com/barseghyanartur/django-fobi/tree/stable/src/fobi/contrib/plugins/form_handlers/mail_sender/>`__:
|
||||
Send the form data by email to the sender.
|
||||
|
||||
Bundled themes
|
||||
--------------
|
||||
|
|
|
|||
|
|
@ -265,6 +265,7 @@ Or latest stable version from BitBucket:
|
|||
'fobi.contrib.plugins.form_handlers.db_store',
|
||||
'fobi.contrib.plugins.form_handlers.http_repost',
|
||||
'fobi.contrib.plugins.form_handlers.mail',
|
||||
'fobi.contrib.plugins.form_handlers.mail_sender',
|
||||
|
||||
# Other project specific apps
|
||||
'foo', # Test app
|
||||
|
|
@ -1943,6 +1944,9 @@ in directory of each plugin for details.
|
|||
- `Mail
|
||||
<https://github.com/barseghyanartur/django-fobi/tree/stable/src/fobi/contrib/plugins/form_handlers/mail/>`__:
|
||||
Send the form data by email.
|
||||
- `Mail the sender
|
||||
<https://github.com/barseghyanartur/django-fobi/tree/stable/src/fobi/contrib/plugins/form_handlers/mail_sender/>`__:
|
||||
Send the form data by email to the sender.
|
||||
|
||||
Bundled themes
|
||||
--------------
|
||||
|
|
|
|||
|
|
@ -84,6 +84,7 @@ Add ``fobi`` core and the plugins to the ``INSTALLED_APPS`` of the your
|
|||
|
||||
'easy_thumbnails', # Required by `content_image` plugin
|
||||
'fobi.contrib.plugins.form_elements.content.content_image',
|
||||
'fobi.contrib.plugins.form_elements.content.content_image_url',
|
||||
'fobi.contrib.plugins.form_elements.content.content_text',
|
||||
'fobi.contrib.plugins.form_elements.content.content_video',
|
||||
|
||||
|
|
@ -94,6 +95,7 @@ Add ``fobi`` core and the plugins to the ``INSTALLED_APPS`` of the your
|
|||
'fobi.contrib.plugins.form_handlers.db_store',
|
||||
'fobi.contrib.plugins.form_handlers.http_repost',
|
||||
'fobi.contrib.plugins.form_handlers.mail',
|
||||
'fobi.contrib.plugins.form_handlers.mail_sender',
|
||||
|
||||
Putting all together, you would have something like this.
|
||||
|
||||
|
|
@ -147,6 +149,7 @@ Putting all together, you would have something like this.
|
|||
# Form element plugins
|
||||
'easy_thumbnails', # Required by ``content_image`` plugin
|
||||
'fobi.contrib.plugins.form_elements.content.content_image',
|
||||
'fobi.contrib.plugins.form_elements.content.content_image_url',
|
||||
'fobi.contrib.plugins.form_elements.content.content_text',
|
||||
'fobi.contrib.plugins.form_elements.content.content_video',
|
||||
|
||||
|
|
@ -154,6 +157,7 @@ Putting all together, you would have something like this.
|
|||
'fobi.contrib.plugins.form_handlers.db_store',
|
||||
'fobi.contrib.plugins.form_handlers.http_repost',
|
||||
'fobi.contrib.plugins.form_handlers.mail',
|
||||
'fobi.contrib.plugins.form_handlers.mail_sender',
|
||||
|
||||
# ...
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue