Skip to content

An easy, functional and customizable lead page for your next big thing, ready to use in your django project.

License

Notifications You must be signed in to change notification settings

dnmellen/django-leads

Repository files navigation

django-leads

https://badge.fury.io/py/django-leads.png https://travis-ci.org/dnmellen/django-leads.png?branch=master https://coveralls.io/repos/dnmellen/django-leads/badge.png https://pypip.in/d/django-leads/badge.png

An easy, functional and customizable lead page for your next big thing, ready to use in your django project.

https://raw.github.com/dnmellen/django-leads/master/assets/leads_pic_1.png

Documentation

The full documentation is at http://django-leads.rtfd.org.

Quickstart

Install django-leads

$ pip install django-leads  # Also auto installs all needed dependencies! :)

Or get the bleeding-edge version:

$ pip install https://github.com/dnmellen/django-leads/archive/master.zip

Settings

INSTALLED_APPS = (
    ...
    'floppyforms',
    'crispy_forms',
    'leads',
)
...
CRISPY_TEMPLATE_PACK = 'bootstrap3'

urls.py

...
import leads.urls

urlpatterns = patterns('',
    ...
    url(r'^admin/', include(admin.site.urls)),
    url(r'^', include(leads.urls, namespace='leads')),
)

Final touch

$ 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
  • Export registered users to CSV
  • Send newsletters to your users
Bitdeli badge

About

An easy, functional and customizable lead page for your next big thing, ready to use in your django project.

Resources

License

Stars

Watchers

Forks

Packages

No packages published