Skip to content
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.

Update readme with simple captcha installation instructions #209

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,15 @@ To use https://github.com/aldryn/aldryn-boilerplate-standard (recommended, will

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

Using Django Simple Captcha
--------------------
To use Aldryn Forms with Django Simple Captcha you have to add ``captcha`` to INSTALLED_APPS and add an entry to your urls.py file:

urlpatterns += [
url(r'^captcha/', include('captcha.urls')),
]

See also (https://django-simple-captcha.readthedocs.io/en/latest/usage.html#installation) for more information.

Creating a Form
===============
Expand Down