Metadata-Version: 1.1
Name: django-captcha-admin
Version: 0.2
Summary: Provides a recaptcha field in django's default admin login page.
Home-page: http://github.com/volrath/django-captcha-admin
Author: Daniel Barreto
Author-email: daniel.barreto.n@gmail.com
License: MIT
Description: ======================
         Django Captcha Admin
        ======================
        
        Simple way to add a ReCaptcha_ field to your admin login page.
        
        4 simple steps
        ==============
        
        1. Install ``django-captcha-admin`` from pypi::
        
             $> pip install django-captcha-admin
        
        2. Add ``captcha_admin`` and ``captcha`` to your ``INSTALLED_APPS``::
        
             INSTALLED_APPS = (
                 ...
                 'captcha_admin',
                 'captcha',
             )
        
        3. Add your captcha keys to your settings, the way django-recaptcha_
           indicates::
        
             RECAPTCHA_PUBLIC_KEY = 'your-public-key'
             RECAPTCHA_PRIVATE_KEY = 'your-private-key'
        
        4. Edit your code so instead of importing ``admin`` from
           ``django.contrib``, you import it from ``captcha_admin``::
        
             from captcha_admin import admin
        
             # This should stay the same
             admin.autodiscover()
        
             urlpatterns = patterns(
                 ...
                 url(r'^admin/', include(admin.site.urls)),  # and this...
                 ...
             )
        
        That's it!
        
        .. _ReCaptcha: https://www.google.com/recaptcha/
        .. _django-recaptcha: https://github.com/praekelt/django-recaptcha
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
