├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md └── demo-code ├── .gitignore ├── README.md ├── db.sqlite3 ├── manage.py ├── project ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── relecloud ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20210330_2200.py │ ├── 0003_auto_20210331_1932.py │ ├── 0004_auto_20210331_2016.py │ └── __init__.py ├── models.py ├── static │ ├── res │ │ ├── css │ │ │ ├── theme.css │ │ │ └── theme.css.map │ │ └── img │ │ │ ├── astronaut.jpeg │ │ │ ├── bit_cosmos.png │ │ │ ├── cosmos-db.jpeg │ │ │ └── small-logo.png │ └── scss │ │ └── custom.scss ├── templates │ ├── about.html │ ├── base.html │ ├── cruise_detail.html │ ├── destination_detail.html │ ├── destinations.html │ ├── index.html │ └── info_request_create.html ├── tests.py ├── urls.py └── views.py └── requirements.txt /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/SECURITY.md -------------------------------------------------------------------------------- /demo-code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/.gitignore -------------------------------------------------------------------------------- /demo-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/README.md -------------------------------------------------------------------------------- /demo-code/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/db.sqlite3 -------------------------------------------------------------------------------- /demo-code/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/manage.py -------------------------------------------------------------------------------- /demo-code/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo-code/project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/project/asgi.py -------------------------------------------------------------------------------- /demo-code/project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/project/settings.py -------------------------------------------------------------------------------- /demo-code/project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/project/urls.py -------------------------------------------------------------------------------- /demo-code/project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/project/wsgi.py -------------------------------------------------------------------------------- /demo-code/relecloud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo-code/relecloud/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/admin.py -------------------------------------------------------------------------------- /demo-code/relecloud/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/apps.py -------------------------------------------------------------------------------- /demo-code/relecloud/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/migrations/0001_initial.py -------------------------------------------------------------------------------- /demo-code/relecloud/migrations/0002_auto_20210330_2200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/migrations/0002_auto_20210330_2200.py -------------------------------------------------------------------------------- /demo-code/relecloud/migrations/0003_auto_20210331_1932.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/migrations/0003_auto_20210331_1932.py -------------------------------------------------------------------------------- /demo-code/relecloud/migrations/0004_auto_20210331_2016.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/migrations/0004_auto_20210331_2016.py -------------------------------------------------------------------------------- /demo-code/relecloud/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo-code/relecloud/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/models.py -------------------------------------------------------------------------------- /demo-code/relecloud/static/res/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/static/res/css/theme.css -------------------------------------------------------------------------------- /demo-code/relecloud/static/res/css/theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/static/res/css/theme.css.map -------------------------------------------------------------------------------- /demo-code/relecloud/static/res/img/astronaut.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/static/res/img/astronaut.jpeg -------------------------------------------------------------------------------- /demo-code/relecloud/static/res/img/bit_cosmos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/static/res/img/bit_cosmos.png -------------------------------------------------------------------------------- /demo-code/relecloud/static/res/img/cosmos-db.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/static/res/img/cosmos-db.jpeg -------------------------------------------------------------------------------- /demo-code/relecloud/static/res/img/small-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/static/res/img/small-logo.png -------------------------------------------------------------------------------- /demo-code/relecloud/static/scss/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/static/scss/custom.scss -------------------------------------------------------------------------------- /demo-code/relecloud/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/templates/about.html -------------------------------------------------------------------------------- /demo-code/relecloud/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/templates/base.html -------------------------------------------------------------------------------- /demo-code/relecloud/templates/cruise_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/templates/cruise_detail.html -------------------------------------------------------------------------------- /demo-code/relecloud/templates/destination_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/templates/destination_detail.html -------------------------------------------------------------------------------- /demo-code/relecloud/templates/destinations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/templates/destinations.html -------------------------------------------------------------------------------- /demo-code/relecloud/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/templates/index.html -------------------------------------------------------------------------------- /demo-code/relecloud/templates/info_request_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/templates/info_request_create.html -------------------------------------------------------------------------------- /demo-code/relecloud/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/tests.py -------------------------------------------------------------------------------- /demo-code/relecloud/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/urls.py -------------------------------------------------------------------------------- /demo-code/relecloud/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/relecloud/views.py -------------------------------------------------------------------------------- /demo-code/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/beginners-django/HEAD/demo-code/requirements.txt --------------------------------------------------------------------------------