├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── lot ├── __init__.py ├── admin.py ├── auth_backend.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_lot_next_url.py │ └── __init__.py ├── models.py ├── urls.py └── views.py ├── setup.py └── tests ├── __init__.py ├── settings.py ├── tests.py └── urls.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/README.rst -------------------------------------------------------------------------------- /lot/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = (0, 0, 6) 2 | -------------------------------------------------------------------------------- /lot/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/lot/admin.py -------------------------------------------------------------------------------- /lot/auth_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/lot/auth_backend.py -------------------------------------------------------------------------------- /lot/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/lot/middleware.py -------------------------------------------------------------------------------- /lot/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/lot/migrations/0001_initial.py -------------------------------------------------------------------------------- /lot/migrations/0002_lot_next_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/lot/migrations/0002_lot_next_url.py -------------------------------------------------------------------------------- /lot/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lot/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/lot/models.py -------------------------------------------------------------------------------- /lot/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/lot/urls.py -------------------------------------------------------------------------------- /lot/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/lot/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/tests/tests.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jespino/django-lot/HEAD/tests/urls.py --------------------------------------------------------------------------------