djangocms-aldryn-forms


Namedjangocms-aldryn-forms JSON
Version 7.0.5 PyPI version JSON
download
home_pagehttps://github.com/CZ-NIC/djangocms-aldryn-forms
SummaryCreate forms and embed them on CMS pages.
upload_time2023-10-04 18:27:07
maintainer
docs_urlNone
authorDivio AG
requires_python
licenseBSD
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage
            |Project continuation| |Pypi package| |Pypi status| |Python versions| |License|

================
Aldryn Forms App
================

Continuation of the deprecated project `Divio Aldryn Forms <https://github.com/divio/aldryn-forms>`_.

Aldryn Forms allows you to build flexible HTML forms for your `Aldryn <http://aldryn.com>`_ and `django CMS
<http://www.django-cms.org>`_ projects, and to integrate them directly in your pages.

Forms can be assembled using the form builder, with the familiar simple drag-and-drop interface of the django CMS
plugin system.

Submitted data is stored in the Django database, and can be explored and exported using the admin, while forms can
be configured to send a confirmation message to users.

Contributing
============

This is a an open-source project. We'll be delighted to receive your
feedback in the form of issues and pull requests. Before submitting your
pull request, please review our `contribution guidelines
<http://docs.django-cms.org/en/latest/contributing/index.html>`_.

We're grateful to all contributors who have helped create and maintain this package.
Contributors are listed at the `contributors <https://github.com/divio/aldryn-forms/graphs/contributors>`_
section.

Installation
============

Aldryn Platform Users
---------------------

Choose a site you want to install the add-on to from the dashboard. Then go to ``Apps -> Install app`` and click ``Install`` next to ``Forms`` app.

Redeploy the site.

Upgrading from < 2.0
====================
Version 2.0 introduced a new model for form data storage called ``FormSubmission``.
The old ``FormData`` model has been deprecated.
Although the ``FormData`` model's data is still accessible through the admin, all new form data will be stored in the new
``FormSubmission`` model.

Manuall Installation
--------------------

Run ``pip install djangocms-aldryn-forms``.

Update ``INSTALLED_APPS`` with ::

    INSTALLED_APPS = [
        ...
        'aldryn_forms',
        'aldryn_forms.contrib.email_notifications',
        'captcha',
        ...
    ]

Also ensure you define an `e-mail backend <https://docs.djangoproject.com/en/dev/topics/email/#dummy-backend>`_ for your app.


Creating a Form
===============

You can create forms in the admin interface now. Search for the label ``Aldryn_Forms``.

Create a CMS page and install the ``Forms`` app there (choose ``Forms`` from the ``Advanced Settings -> Application`` dropdown).

Now redeploy/restart the site again.

The above CMS site has become a forms POST landing page - a place where submission errors get displayed if there are any.


Available Plug-ins
==================

- ``FormPlugin`` plugin lets you embed certain forms on a CMS page.
- ``Fieldset`` groups fields.
- ``TextField`` renders text input.
- ``TextAreaField`` renders text input.
- ``HiddenField``
- ``PhoneField``
- ``DateField``
- ``DateTimeLocalField``
- ``TimeField``
- ``NumberField``
- ``EmailField``
- ``FileField`` renders a file upload input.
- ``MultipleFilesField``
- ``ImageField`` same as ``FileField`` but validates that the uploaded file is an image.
- ``BooleanField`` renders checkbox.
- ``SelectField`` renders single select input.
- ``MultipleSelectField``
- ``MultipleCheckboxSelectField`` renders multiple checkboxes.
- ``CaptchaField``


.. |Project continuation| image:: https://img.shields.io/badge/Continuation-Divio_Aldryn_Froms-blue
    :target: https://github.com/CZ-NIC/djangocms-aldryn-forms
    :alt: Continuation of the deprecated project "Divio Aldryn forms"
.. |Pypi package| image:: https://img.shields.io/pypi/v/djangocms-aldryn-forms.svg
    :target: https://pypi.python.org/pypi/djangocms-aldryn-forms/
    :alt: Pypi package
.. |Pypi status| image:: https://img.shields.io/pypi/status/djangocms-aldryn-forms.svg
   :target: https://pypi.python.org/pypi/djangocms-aldryn-forms
   :alt: status
.. |Python versions| image:: https://img.shields.io/pypi/pyversions/djangocms-aldryn-forms.svg
   :target: https://pypi.python.org/pypi/djangocms-aldryn-forms
   :alt: Python versions
.. |License| image:: https://img.shields.io/pypi/l/djangocms-aldryn-forms.svg
    :target: https://github.com/CZ-NIC/djangocms-aldryn-forms/blob/master/LICENSE.txt
    :alt: BSD License

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/CZ-NIC/djangocms-aldryn-forms",
    "name": "djangocms-aldryn-forms",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Divio AG",
    "author_email": "info@divio.ch",
    "download_url": "https://files.pythonhosted.org/packages/20/2e/1bd184fb48d5e1512e24a6dbe7acef94e80b97cabede97cbc483b942bf59/djangocms-aldryn-forms-7.0.5.tar.gz",
    "platform": null,
    "description": "|Project continuation| |Pypi package| |Pypi status| |Python versions| |License|\n\n================\nAldryn Forms App\n================\n\nContinuation of the deprecated project `Divio Aldryn Forms <https://github.com/divio/aldryn-forms>`_.\n\nAldryn Forms allows you to build flexible HTML forms for your `Aldryn <http://aldryn.com>`_ and `django CMS\n<http://www.django-cms.org>`_ projects, and to integrate them directly in your pages.\n\nForms can be assembled using the form builder, with the familiar simple drag-and-drop interface of the django CMS\nplugin system.\n\nSubmitted data is stored in the Django database, and can be explored and exported using the admin, while forms can\nbe configured to send a confirmation message to users.\n\nContributing\n============\n\nThis is a an open-source project. We'll be delighted to receive your\nfeedback in the form of issues and pull requests. Before submitting your\npull request, please review our `contribution guidelines\n<http://docs.django-cms.org/en/latest/contributing/index.html>`_.\n\nWe're grateful to all contributors who have helped create and maintain this package.\nContributors are listed at the `contributors <https://github.com/divio/aldryn-forms/graphs/contributors>`_\nsection.\n\nInstallation\n============\n\nAldryn Platform Users\n---------------------\n\nChoose a site you want to install the add-on to from the dashboard. Then go to ``Apps -> Install app`` and click ``Install`` next to ``Forms`` app.\n\nRedeploy the site.\n\nUpgrading from < 2.0\n====================\nVersion 2.0 introduced a new model for form data storage called ``FormSubmission``.\nThe old ``FormData`` model has been deprecated.\nAlthough the ``FormData`` model's data is still accessible through the admin, all new form data will be stored in the new\n``FormSubmission`` model.\n\nManuall Installation\n--------------------\n\nRun ``pip install djangocms-aldryn-forms``.\n\nUpdate ``INSTALLED_APPS`` with ::\n\n    INSTALLED_APPS = [\n        ...\n        'aldryn_forms',\n        'aldryn_forms.contrib.email_notifications',\n        'captcha',\n        ...\n    ]\n\nAlso ensure you define an `e-mail backend <https://docs.djangoproject.com/en/dev/topics/email/#dummy-backend>`_ for your app.\n\n\nCreating a Form\n===============\n\nYou can create forms in the admin interface now. Search for the label ``Aldryn_Forms``.\n\nCreate a CMS page and install the ``Forms`` app there (choose ``Forms`` from the ``Advanced Settings -> Application`` dropdown).\n\nNow redeploy/restart the site again.\n\nThe above CMS site has become a forms POST landing page - a place where submission errors get displayed if there are any.\n\n\nAvailable Plug-ins\n==================\n\n- ``FormPlugin`` plugin lets you embed certain forms on a CMS page.\n- ``Fieldset`` groups fields.\n- ``TextField`` renders text input.\n- ``TextAreaField`` renders text input.\n- ``HiddenField``\n- ``PhoneField``\n- ``DateField``\n- ``DateTimeLocalField``\n- ``TimeField``\n- ``NumberField``\n- ``EmailField``\n- ``FileField`` renders a file upload input.\n- ``MultipleFilesField``\n- ``ImageField`` same as ``FileField`` but validates that the uploaded file is an image.\n- ``BooleanField`` renders checkbox.\n- ``SelectField`` renders single select input.\n- ``MultipleSelectField``\n- ``MultipleCheckboxSelectField`` renders multiple checkboxes.\n- ``CaptchaField``\n\n\n.. |Project continuation| image:: https://img.shields.io/badge/Continuation-Divio_Aldryn_Froms-blue\n    :target: https://github.com/CZ-NIC/djangocms-aldryn-forms\n    :alt: Continuation of the deprecated project \"Divio Aldryn forms\"\n.. |Pypi package| image:: https://img.shields.io/pypi/v/djangocms-aldryn-forms.svg\n    :target: https://pypi.python.org/pypi/djangocms-aldryn-forms/\n    :alt: Pypi package\n.. |Pypi status| image:: https://img.shields.io/pypi/status/djangocms-aldryn-forms.svg\n   :target: https://pypi.python.org/pypi/djangocms-aldryn-forms\n   :alt: status\n.. |Python versions| image:: https://img.shields.io/pypi/pyversions/djangocms-aldryn-forms.svg\n   :target: https://pypi.python.org/pypi/djangocms-aldryn-forms\n   :alt: Python versions\n.. |License| image:: https://img.shields.io/pypi/l/djangocms-aldryn-forms.svg\n    :target: https://github.com/CZ-NIC/djangocms-aldryn-forms/blob/master/LICENSE.txt\n    :alt: BSD License\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Create forms and embed them on CMS pages.",
    "version": "7.0.5",
    "project_urls": {
        "Homepage": "https://github.com/CZ-NIC/djangocms-aldryn-forms"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2c9e746b476bc01352acaf02785947eff4743f97b1e8b7e88bbadab0bcd4632",
                "md5": "8aa6a0bcc00e04188eb0de6c64d62407",
                "sha256": "8e0f4683b41478e122f1373d16fda2a7a2dec595a1977a0ceda50b2b826459b8"
            },
            "downloads": -1,
            "filename": "djangocms_aldryn_forms-7.0.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8aa6a0bcc00e04188eb0de6c64d62407",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 150224,
            "upload_time": "2023-10-04T18:27:05",
            "upload_time_iso_8601": "2023-10-04T18:27:05.973955Z",
            "url": "https://files.pythonhosted.org/packages/b2/c9/e746b476bc01352acaf02785947eff4743f97b1e8b7e88bbadab0bcd4632/djangocms_aldryn_forms-7.0.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "202e1bd184fb48d5e1512e24a6dbe7acef94e80b97cabede97cbc483b942bf59",
                "md5": "7f7977ab8799af1d89fa2c502b4cfd87",
                "sha256": "7dab68e7d367b094eb137f69a945046158e4ee80d94bbda4249bd3f0a8e76c63"
            },
            "downloads": -1,
            "filename": "djangocms-aldryn-forms-7.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "7f7977ab8799af1d89fa2c502b4cfd87",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 95607,
            "upload_time": "2023-10-04T18:27:07",
            "upload_time_iso_8601": "2023-10-04T18:27:07.768747Z",
            "url": "https://files.pythonhosted.org/packages/20/2e/1bd184fb48d5e1512e24a6dbe7acef94e80b97cabede97cbc483b942bf59/djangocms-aldryn-forms-7.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-04 18:27:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "CZ-NIC",
    "github_project": "djangocms-aldryn-forms",
    "travis_ci": true,
    "coveralls": true,
    "github_actions": false,
    "tox": true,
    "lcname": "djangocms-aldryn-forms"
}
        
Elapsed time: 0.11811s