├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── booking ├── booking │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py └── restaurants │ ├── __init__.py │ ├── admin.py │ ├── booking.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20150520_1016.py │ └── __init__.py │ ├── models.py │ ├── tests │ ├── __init__.py │ ├── factories.py │ └── test_booking.py │ └── views.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/README.md -------------------------------------------------------------------------------- /booking/booking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /booking/booking/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/booking/booking/settings.py -------------------------------------------------------------------------------- /booking/booking/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/booking/booking/urls.py -------------------------------------------------------------------------------- /booking/booking/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/booking/booking/wsgi.py -------------------------------------------------------------------------------- /booking/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/booking/db.sqlite3 -------------------------------------------------------------------------------- /booking/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/booking/manage.py -------------------------------------------------------------------------------- /booking/restaurants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /booking/restaurants/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/booking/restaurants/admin.py -------------------------------------------------------------------------------- /booking/restaurants/booking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/booking/restaurants/booking.py -------------------------------------------------------------------------------- /booking/restaurants/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/booking/restaurants/migrations/0001_initial.py -------------------------------------------------------------------------------- /booking/restaurants/migrations/0002_auto_20150520_1016.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/booking/restaurants/migrations/0002_auto_20150520_1016.py -------------------------------------------------------------------------------- /booking/restaurants/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /booking/restaurants/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/booking/restaurants/models.py -------------------------------------------------------------------------------- /booking/restaurants/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /booking/restaurants/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/booking/restaurants/tests/factories.py -------------------------------------------------------------------------------- /booking/restaurants/tests/test_booking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/booking/restaurants/tests/test_booking.py -------------------------------------------------------------------------------- /booking/restaurants/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreagrandi/booking-example/HEAD/requirements.txt --------------------------------------------------------------------------------