Skip to main content

Invisible captcha in administrative login.

Project description

###############################
Django Invisible Recaptcha Admin
###############################

###############################
How do I get set up?
###############################

Instale usando PyPI:

pip install django_invisible_recaptcha_admin

Add the app ``django_invisible_recaptcha_admin`` to ``settings.py``



INSTALLED_APPS = (
'django_invisible_recaptcha_admin',

'nocaptcha_recaptcha',

...
)


Add to ``urls.py`` from:

from django_invisible_recaptcha_admin.admin import my_admin

urlpatterns = [
#url(r'^admin/', include(admin.site.urls)),

url(r'^admin/', include(my_admin.urls)),
]


Add `keys <https://www.google.com/recaptcha/>`_ in ``settings.py``

NORECAPTCHA_SITE_KEY = 'SITEKEY'

NORECAPTCHA_SECRET_KEY = 'SECRET_KEY'


Now, in your ``admin.py`` you should use like this:


from django_invisible_recaptcha_admin.admin import my_admin

...

class TODOAdmin(admin.ModelAdmin):

list_display = ['todo']

...

my_admin.register(TODO, TODOAdmin)


###############################
To Do
###############################

* Create tests
* Organize the code according to the `PEP 8 <http://www.python.org/dev/peps/pep-0008/>`_



Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

File details

Details for the file django_invisible_recaptcha_admin-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_invisible_recaptcha_admin-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8d1acccb77d2f26653f12ef29c53e7f77acaf58a264e1312d5768edca87e99f4
MD5 2f1333d4e1ade938a0533473aa946999
BLAKE2b-256 57994e4704254bd72f4ce05d2f41e3339aef21616be5618e58d86fa4dfed03a0

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