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/>`_
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
Release history Release notifications | RSS feed
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
- Download URL: django_invisible_recaptcha_admin-1.0.0-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d1acccb77d2f26653f12ef29c53e7f77acaf58a264e1312d5768edca87e99f4 |
|
MD5 | 2f1333d4e1ade938a0533473aa946999 |
|
BLAKE2b-256 | 57994e4704254bd72f4ce05d2f41e3339aef21616be5618e58d86fa4dfed03a0 |