Skip to main content

A simple Captcha field for Wagtail form pages.

Project description

Wagtail forms with a Captcha form field/widget integration app. Wagtail Simple Captcha provides an easy way to integrate the django-simple-captcha field when using the Wagtail formbuilder.

This app is a modification of wagtail-django-recaptcha by Springload.

Check out Awesome Wagtail for more awesome packages and resources from the Wagtail community.

Installation

  1. Install wagtailcaptcha via pip pip install wagtail-django-simple-captcha or add wagtailcaptcha to your Python path.

  2. Add wagtailcaptcha and captcha to your INSTALLED_APPS setting.

  3. Configure django-simple-captcha as explained in here.

Usage

Field

The quickest way to add a captcha field to a Wagtail Form Page is to inherit from the two options provided, WagtailCaptchaForm or WagtailCaptchaEmailForm. The first options inherits from AbstractForm while the seconds does it from AbstractEmailForm. Either way your page is going to display a captcha field at the end of the form.

Example:

from wagtail.contrib.forms.models import AbstractFormField
from wagtail.admin.edit_handlers import FieldPanel, InlinePanel, MultiFieldPanel
from wagtail.core.fields import RichTextField

# Or, if using Wagtail < 2.0
#from wagtail.wagtailforms.models import AbstractFormField
#from wagtail.wagtailadmin.edit_handlers import FieldPanel, InlinePanel, MultiFieldPanel
#from wagtail.wagtailcore.fields import RichTextField

from modelcluster.fields import ParentalKey

from wagtailcaptcha.models import WagtailCaptchaEmailForm


class SubmitFormField(AbstractFormField):
    page = ParentalKey('SubmitFormPage', related_name='form_fields')


class SubmitFormPage(WagtailCaptchaEmailForm):
    body = RichTextField(blank=True, help_text='Edit the content you want to see before the form.')
    thank_you_text = RichTextField(blank=True, help_text='Set the message users will see after submitting the form.')

    class Meta:
        verbose_name = "Form submission page"


SubmitFormPage.content_panels = [
    FieldPanel('title', classname="full title"),
    FieldPanel('body', classname="full"),
    FieldPanel('thank_you_text', classname="full"),
    InlinePanel('form_fields', label="Form fields"),
    MultiFieldPanel([
        FieldPanel('to_address'),
        FieldPanel('from_address'),
        FieldPanel('subject'),
    ], "Email notification")
]

The captcha field can’t be added from the admin UI but will appear in your frontend as the last of the form fields.

If you need to customize the behavior of the form builder, make sure to inherit from wagtailcaptcha.forms.WagtailCaptchaFormBuilder instead of Wagtail’s default form builder, then declare it as usual on the page model:

from wagtailcaptcha.forms import WagtailCaptchaFormBuilder
from wagtailcaptcha.models import WagtailCaptchaForm


class CustomFormBuilder(WagtailCaptchaFormBuilder):
    # Some custom behavior...


class FormPage(WagtailCaptchaForm):
    form_builder = CustomFormBuilder
    # The rest of the page definition as usual...

For a more thorough example, Made with Wagtail (github.com/springload/madewithwagtail) is an example of an open-source site using the module in which this app is based from.

Development

Installation

Requirements: virtualenv, pyenv, twine

git clone git@github.com:acarasimon96/wagtail-django-simple-captcha.git
cd wagtail-django-simple-captcha/
virtualenv .venv
source ./.venv/bin/activate
make init

Commands

Use make help to get a list of commands.

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wagtail-django-simple-captcha-1.0.tar.gz (10.6 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file wagtail-django-simple-captcha-1.0.tar.gz.

File metadata

  • Download URL: wagtail-django-simple-captcha-1.0.tar.gz
  • Upload date:
  • Size: 10.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.10

File hashes

Hashes for wagtail-django-simple-captcha-1.0.tar.gz
Algorithm Hash digest
SHA256 c2f675ee506c8efa9b2ed53153653847ff46e324221f6cf0d59a47c5837055b3
MD5 b53dc87ab7ea0683b0c1b7650ccc3f9e
BLAKE2b-256 68d9c5a359cbdbe42dc7caab85c3fd3f8f00ff8fdd80ee1984aa408d74c58e27

See more details on using hashes here.

File details

Details for the file wagtail_django_simple_captcha-1.0-py3-none-any.whl.

File metadata

  • Download URL: wagtail_django_simple_captcha-1.0-py3-none-any.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.10

File hashes

Hashes for wagtail_django_simple_captcha-1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ea8d5b14a6573a0db3352915b2bc6dd47d968f9462747276402368e08f46541e
MD5 ae89982caf5f2963b51910991eca87f2
BLAKE2b-256 e3d20b7d7b09e65b550df24a4d942b0854161926e0c507e738c7e26b0618de66

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page