| 1 | = collective.easyform = |
| 2 | |
| 3 | |
| 4 | == Links == |
| 5 | |
| 6 | * [http://plone.org/products/collective-easyform/releases Download releases from plone.org] |
| 7 | |
| 8 | * [https://pypi.python.org/pypi/collective Collective.Easyform project area on PyPi] |
| 9 | |
| 10 | * [https://github.com/quintagroup/collective.easyform Code Repository on Github] |
| 11 | |
| 12 | * [http://collectiveeasyform.readthedocs.org/en/latest Collective.Easyform Documentation] |
| 13 | |
| 14 | * [https://travis-ci.org/quintagroup/collective.easyform Build status] [[Image(https://travis-ci.org/quintagroup/collective.easyform.png?branch=master)]] |
| 15 | |
| 16 | Collective.easyform enables creation of custom forms using dexterity. This Plone package is similar to Products.PloneFormGen that is based on Archetypes. Dexterity is a new platform for content types in Plone and will be used instead of Archetypes in Plone 5. Easyform provides a Plone form builder through-the-web using fields, widgets, actions and validators. |
| 17 | |
| 18 | Similarly to PloneFormGen, Easyform is used to generate web forms that save or mail form input. Interface is simple and user-friendly to allow non-programmers create forms. |
| 19 | |
| 20 | Install product, rerun your Plone instance and activate Collective.easyform. Add Easyform and fill out the fields. Further add and customize fields to create a unique form that will meet your particular requirements. |
| 21 | |
| 22 | With Collective.easyform you can add fieldsets and fields to the form. There are enough basic field types to satisfy any demands: |
| 23 | |
| 24 | * File Upload |
| 25 | |
| 26 | * Text line (String) |
| 27 | |
| 28 | * Integer |
| 29 | |
| 30 | * Yes/No |
| 31 | |
| 32 | * Date |
| 33 | |
| 34 | * Date/Time |
| 35 | |
| 36 | * Floating-point number |
| 37 | |
| 38 | * Choice |
| 39 | |
| 40 | * Rich Text |
| 41 | |
| 42 | * Image |
| 43 | |
| 44 | * Multiple Choice |
| 45 | |
| 46 | * Text |
| 47 | |
| 48 | * Password |
| 49 | |
| 50 | * ReСaptcha field |
| 51 | |
| 52 | Available Actions: |
| 53 | |
| 54 | * Mailer |
| 55 | |
| 56 | * Save Data |
| 57 | |
| 58 | * CustomScript |
| 59 | |
| 60 | |