This project requires django-cms v3.6 or higher to be properly installed and configured.
This package is compatible with Aldryn.
This version uses https://github.com/praekelt/django-recaptcha for ReCaptcha capabilities.
Quickstart
Install djangocms-forms-maintained:
pip install djangocms-forms-maintained
Add djangocms_forms to INSTALLED_APPS:
INSTALLED_APPS = ( ... 'djangocms_forms', ... )Sync database tables (requires south>=1.0.1 if you are using Django 1.6.x):
python manage.py migrate
Add djangocms_forms.urls to your project’s urls module or create a django CMS page to hook the application into. In Advanced Settings, set its Application to Forms (this requires a server restart):
urlpatterns = patterns( ... path('', include('djangocms_forms.urls')), ... )To use reCAPTCHA for spam protection, you need to sign up for an API key pair for your site:
DJANGOCMS_FORMS_RECAPTCHA_PUBLIC_KEY = '<recaptcha_site_key>' DJANGOCMS_FORMS_RECAPTCHA_SECRET_KEY = '<recaptcha_secret_key>'
You can register a new site via https://www.google.com/recaptcha/admin
Configuration
Plugin(s) Module - If module is None, plugin is grouped Generic group:
DJANGOCMS_FORMS_PLUGIN_MODULE = _('Generic')
Name of the plugin:
DJANGOCMS_FORMS_PLUGIN_NAME = _('Form')
The path to the default template used to render the template:
DJANGOCMS_FORMS_DEFAULT_TEMPLATE = 'djangocms_forms/form_template/default.html'
or override the Form Template dropdown choices to have different template options:
DJANGOCMS_FORMS_TEMPLATES = (
('djangocms_forms/form_template/default.html', _('Default')),
)
HTML5 required - When set to True all required fields inputs will be rendered with HTML5 required=required attribute:
DJANGOCMS_FORMS_USE_HTML5_REQUIRED = False
By default, djangocms-forms adds additional css classes to all form inputs. e.g. a Text field generates an <input class="textinput"> You can override this to integrate your own CSS framework:
DJANGOCMS_FORMS_WIDGET_CSS_CLASSES = {'__all__': ('form-control', ) }
e.g. the above setting would generate <input class"form-control" .... for all fields.
By default, djangocms-forms will redirect a successful form submission after 1000 milliseconds (1 second). You may provide your own redirect delay value for all forms site-wide via settings:
DJANGOCMS_FORMS_REDIRECT_DELAY = 10000 # 10 seconds
or on a per-form basis via the redirect_delay field. The order of precedence for the redirect value is always:
instance.redirect_delay > DJANGOCMS_FORMS_REDIRECT_DELAY > 1000 (default)
As of 202206141310 you can now specify new FORMAT_CHOICES for the form, since tablib seems to be a bit finicky in the latest version:
DJANGOCMS_FORMS_FORMAT_CHOICES = (
("csv", _("CSV")),
("json", _("JSON")),
("yaml", _("YAML")),
("xlsx", _("Microsoft Excel")),
)
Preview
Release files for djangocms-forms-maintained 202206141440
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| djangocms-forms-maintained-202206141440.tar.gz | 138.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| djangocms_forms_maintained-202206141440-py2.py3-none-any.whl | Python 3, Python 2 | none | any | Details |
Total release size: 292.1 kB
Release files / djangocms-forms-maintained-202206141440.tar.gz
| Download URL | djangocms-forms-maintained-202206141440.tar.gz |
|---|---|
| Size | 138.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
6a75383d28624c000159f44d21e644362b1c1694ec833c35978b017d7d67354d
|
|
BLAKE2b-256 checksum How to use checksums |
0cf620cbd0c9047f2b53200224ff31b715855288247e5b6b0977e322e9f04c26
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.4
|
Release files / djangocms_forms_maintained-202206141440-py2.py3-none-any.whl
| Download URL | djangocms_forms_maintained-202206141440-py2.py3-none-any.whl |
|---|---|
| Size | 153.4 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
290a28214fc65f1936d06aa98ea793da5218e2ae2449e0c20625b32dd965d194
|
|
BLAKE2b-256 checksum How to use checksums |
9379ee443fd77e59e00db09e3ca3d5e33cebcb593fcac15427fc517387191540
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.4
|