Metadata-Version: 1.0
Name: django-crispy-forms-registration
Version: 0.1.0
Summary: Library that merges Django auth, registration, and crispy
Home-page: https://github.com/SoloTodo/django_crispy_forms_registration
Author: Vijay Khemlani
Author-email: vkhemlan@gmail.com
License: LICENSE.txt
Description: =============================
        django_crispy_forms_registration
        =============================
        
        django_crispy_forms_registration is a library that combines the
        features of the `default authentication application <https://docs.djangoproject.com/en/1.4/topics/auth/#module-django.contrib.auth>`_
        of Django with the registration system of `django-registration <https://bitbucket.org/ubernostrum/django-registration/>`_,
        overriding their default forms with ones that make use of the
        `crispy forms library <https://github.com/maraujop/django-crispy-forms>`_.
        .
        
        Installation
        ============
        
        The easiest way to install django_crispy_forms_registration is using pip::
        
            pip install django_crispy_forms_registration
        
        Configuration
        =============
        
        Enable the admin, registration and crispy_forms_registration apps in
        your project settings. Make sure that your application appears before the rest::
        
            'YOUR_APPLICATION',
            'registration',
            'crispy_forms_registration',
            'django.contrib.admin',
        
        In the URLs file of the project, append the following declaration::
        
            urlpatterns += patterns('',
                url(r'^accounts/',        
                include('crispy_forms_registration.urls')),
            )
        
        Demo
        ====
        
        The source code includes a small Django project and client application that
        makes use of the library, just download it and run the typical commands to run
        a Django project::
        
            python manage.py syncdb
            python manage.py runserver
        
        Its settings configuration show the installation and configuration steps
        described above.
Platform: UNKNOWN
