Metadata-Version: 1.1
Name: django-leads
Version: 0.1.1
Summary: An easy, functional and customizable lead page for your next big thing, ready to use in your django project.
Home-page: https://github.com/dnmellen/django-leads
Author: Diego Navarro Mellén
Author-email: dnmellen@gmail.com
License: BSD
Description: =============================
        django-leads
        =============================
        
        .. image:: https://badge.fury.io/py/django-leads.png
            :target: http://badge.fury.io/py/django-leads
            
        .. image:: https://travis-ci.org/dnmellen/django-leads.png?branch=master
                :target: https://travis-ci.org/dnmellen/django-leads
        
        .. image:: https://coveralls.io/repos/dnmellen/django-leads/badge.png
                :target: https://coveralls.io/r/dnmellen/django-leads
        
        .. image:: https://pypip.in/d/django-leads/badge.png
                :target: https://crate.io/packages/django-leads?version=latest
        
        
        An easy, functional and customizable lead page for your next big thing, ready to use in your django project.
        
        Documentation
        -------------
        
        The full documentation is at http://django-leads.rtfd.org.
        
        Quickstart
        ----------
        
        Install django-leads
        ++++++++++++++++++++++
        
        .. code-block :: bash
        
            $ pip install django-leads  # Also auto installs all needed dependencies! :)
        
        Or get the bleeding-edge version:
        
        .. code-block :: bash
        
            $ pip install https://github.com/dnmellen/django-leads/master
        
        Settings
        ++++++++++++++++++++++
        
        .. code-block :: python
        
            INSTALLED_APPS = (
                ...
                'floppyforms',
                'crispy_forms',
                'leads',
            )
            ...
            CRISPY_TEMPLATE_PACK = 'bootstrap3'
        
        urls.py
        ++++++++++++++++++++++
        
        .. code-block :: python
        
            ...
            import leads.urls
        
            urlpatterns = patterns('',
                ...
                url(r'^admin/', include(admin.site.urls)),
                url(r'^', include(leads.urls, namespace='leads')),
            )
        
        Final touch
        ++++++++++++++++++++++
        
        .. code-block :: bash
        
            $ python manage.py syncdb
        
        
        Features
        --------
        
        * Works on Python 2.6, 2.7, 3.3
        * Basic lead page to act as a placeholder for your django project
        * Registers user's name and email into database
        * Customizable and extendable models and forms
        * Admin interface
        
        
        
        
        History
        -------
        
        0.1.0 (2013-11-08)
        ++++++++++++++++++
        
        * First release on PyPI.
        
        0.1.1 (2013-11-10)
        ++++++++++++++++++
        
        * Makes this app more extendable by using custom models and forms
        
Keywords: django-leads
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
