├── Dockerfile ├── LICENSE ├── Makefile ├── Procfile ├── README.md ├── amadeus_demo_api ├── amadeus_demo_api │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── demo │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── booking.py │ ├── flight.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── static │ │ └── demo │ │ │ └── style.css │ ├── templates │ │ └── demo │ │ │ ├── book_flight.html │ │ │ ├── home.html │ │ │ └── results.html │ ├── urls.py │ └── views.py ├── manage.py └── screenshots │ ├── amadeus-flight-booking-django-2.png │ └── amadeus-flight-booking-django.png └── requirements.txt /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/README.md -------------------------------------------------------------------------------- /amadeus_demo_api/amadeus_demo_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /amadeus_demo_api/amadeus_demo_api/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/amadeus_demo_api/settings.py -------------------------------------------------------------------------------- /amadeus_demo_api/amadeus_demo_api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/amadeus_demo_api/urls.py -------------------------------------------------------------------------------- /amadeus_demo_api/amadeus_demo_api/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /amadeus_demo_api/amadeus_demo_api/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/amadeus_demo_api/wsgi.py -------------------------------------------------------------------------------- /amadeus_demo_api/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /amadeus_demo_api/demo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/demo/admin.py -------------------------------------------------------------------------------- /amadeus_demo_api/demo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/demo/apps.py -------------------------------------------------------------------------------- /amadeus_demo_api/demo/booking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/demo/booking.py -------------------------------------------------------------------------------- /amadeus_demo_api/demo/flight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/demo/flight.py -------------------------------------------------------------------------------- /amadeus_demo_api/demo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /amadeus_demo_api/demo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/demo/models.py -------------------------------------------------------------------------------- /amadeus_demo_api/demo/static/demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/demo/static/demo/style.css -------------------------------------------------------------------------------- /amadeus_demo_api/demo/templates/demo/book_flight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/demo/templates/demo/book_flight.html -------------------------------------------------------------------------------- /amadeus_demo_api/demo/templates/demo/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/demo/templates/demo/home.html -------------------------------------------------------------------------------- /amadeus_demo_api/demo/templates/demo/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/demo/templates/demo/results.html -------------------------------------------------------------------------------- /amadeus_demo_api/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/demo/urls.py -------------------------------------------------------------------------------- /amadeus_demo_api/demo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/demo/views.py -------------------------------------------------------------------------------- /amadeus_demo_api/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/manage.py -------------------------------------------------------------------------------- /amadeus_demo_api/screenshots/amadeus-flight-booking-django-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/screenshots/amadeus-flight-booking-django-2.png -------------------------------------------------------------------------------- /amadeus_demo_api/screenshots/amadeus-flight-booking-django.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/amadeus_demo_api/screenshots/amadeus-flight-booking-django.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amadeus4dev/amadeus-flight-booking-django/HEAD/requirements.txt --------------------------------------------------------------------------------