├── .DS_Store ├── .gitattributes ├── README.md └── src ├── .DS_Store ├── about ├── .DS_Store ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── templates │ ├── .DS_Store │ └── about │ │ └── about.html ├── tests.py ├── urls.py └── views.py ├── agents ├── .DS_Store ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── templates │ ├── .DS_Store │ └── agents │ │ └── agents.html ├── tests.py ├── urls.py └── views.py ├── contact ├── .DS_Store ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── forms.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── templates │ ├── .DS_Store │ └── contact │ │ └── contact.html ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── home ├── .DS_Store ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-36.pyc ├── models.py ├── templates │ ├── .DS_Store │ └── home │ │ └── home.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── media ├── about │ ├── Main-Image_iStock-848x493.jpg │ └── Main-Image_iStock-848x493_keCrcwA.jpg ├── agents │ └── 1b3f66d8e37195b7d056b6f8954273e0-hipster-male-character-2-by-vexels.png ├── category │ ├── GettyImages-538096543_medium.jpg │ ├── GettyImages-540763429-584ed3443df78c491ee81d01.jpg │ └── San_Francisco_California._June_2017_cropped.jpg └── property │ ├── 1400987123864.jpeg │ ├── 54850_3971_001.jpg │ └── San_Francisco_California._June_2017_cropped.jpg ├── oytline.txt ├── project ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── wsgi.cpython-36.pyc ├── settings.py ├── urls.py └── wsgi.py ├── property ├── .DS_Store ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── forms.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190111_2012.py │ ├── 0003_property_image.py │ ├── 0004_category.py │ ├── 0005_property_category.py │ ├── 0006_auto_20190111_2243.py │ ├── 0007_reserve.py │ ├── 0008_category_image.py │ ├── 0009_property_location.py │ ├── 0010_auto_20190115_1602.py │ ├── 0011_property_city.py │ ├── 0012_auto_20190115_1611.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_auto_20190111_2012.cpython-36.pyc │ │ ├── 0003_property_image.cpython-36.pyc │ │ ├── 0004_category.cpython-36.pyc │ │ ├── 0005_property_category.cpython-36.pyc │ │ ├── 0006_auto_20190111_2243.cpython-36.pyc │ │ ├── 0007_reserve.cpython-36.pyc │ │ ├── 0008_category_image.cpython-36.pyc │ │ ├── 0009_property_location.cpython-36.pyc │ │ ├── 0010_auto_20190115_1601.cpython-36.pyc │ │ ├── 0010_auto_20190115_1602.cpython-36.pyc │ │ ├── 0011_property_city.cpython-36.pyc │ │ ├── 0012_auto_20190115_1611.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── templates │ ├── .DS_Store │ └── property │ │ ├── detail.html │ │ └── list.html ├── tests.py ├── urls.py └── views.py ├── requirements.txt ├── static ├── .DS_Store ├── css │ ├── .DS_Store │ ├── custom.css │ ├── default-skin │ │ ├── default-skin.css │ │ ├── default-skin.png │ │ ├── default-skin.svg │ │ └── preloader.gif │ ├── style.css │ ├── style.min.css │ ├── styles-merged.css │ ├── styles-merged.css.map │ └── vendor │ │ ├── animate.css │ │ ├── bootstrap.min.css │ │ ├── default-skin.css │ │ ├── flexslider.css │ │ ├── icomoon.css │ │ ├── magnific-popup.css │ │ ├── owl.carousel.min.css │ │ ├── owl.theme.default.min.css │ │ └── photoswipe.css ├── fonts │ ├── .DS_Store │ ├── icomoon demo │ │ ├── .DS_Store │ │ ├── Read Me.txt │ │ ├── demo-files │ │ │ ├── demo.css │ │ │ └── demo.js │ │ ├── demo.html │ │ ├── fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ ├── selection.json │ │ └── style.css │ └── icomoon │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff ├── img │ ├── .DS_Store │ ├── flaticon │ │ ├── backup.txt │ │ ├── license │ │ │ └── license.pdf │ │ └── svg │ │ │ ├── 001-prize.svg │ │ │ ├── 002-camera.svg │ │ │ ├── 003-fence.svg │ │ │ ├── 004-house.svg │ │ │ ├── 005-new.svg │ │ │ └── 006-coin.svg │ ├── loc.png │ ├── person_1.jpg │ ├── person_2.jpg │ ├── person_3.jpg │ ├── person_4.jpg │ ├── preloader.gif │ ├── slider_1.jpg │ ├── slider_2.jpg │ ├── slider_3.jpg │ ├── slider_4.jpg │ └── slider_5.jpg ├── js │ ├── .DS_Store │ ├── custom.js │ ├── google-map.js │ ├── main.js │ ├── main.min.js │ ├── scripts.js │ ├── scripts.min.js │ └── vendor │ │ ├── .DS_Store │ │ ├── bootstrap.min.js │ │ ├── circle-progress.min.js │ │ ├── html5shiv.min.js │ │ ├── jquery.appear.js │ │ ├── jquery.appear.min.js │ │ ├── jquery.countTo.js │ │ ├── jquery.easing.1.3.js │ │ ├── jquery.flexslider-min.js │ │ ├── jquery.magnific-popup.min.js │ │ ├── jquery.min.js │ │ ├── jquery.stellar.min.js │ │ ├── jquery.waypoints.min.js │ │ ├── owl.carousel.min.js │ │ └── respond.min.js ├── scss │ ├── .DS_Store │ ├── _custom-settings.scss │ └── style.scss └── static_root │ ├── admin │ ├── css │ │ ├── autocomplete.css │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dashboard.css │ │ ├── fonts.css │ │ ├── forms.css │ │ ├── login.css │ │ ├── responsive.css │ │ ├── responsive_rtl.css │ │ ├── rtl.css │ │ ├── vendor │ │ │ └── select2 │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ └── widgets.css │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ └── Roboto-Regular-webfont.woff │ ├── img │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── calendar-icons.svg │ │ ├── gis │ │ │ ├── move_vertex_off.svg │ │ │ └── move_vertex_on.svg │ │ ├── icon-addlink.svg │ │ ├── icon-alert.svg │ │ ├── icon-calendar.svg │ │ ├── icon-changelink.svg │ │ ├── icon-clock.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-no.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-unknown.svg │ │ ├── icon-viewlink.svg │ │ ├── icon-yes.svg │ │ ├── inline-delete.svg │ │ ├── search.svg │ │ ├── selector-icons.svg │ │ ├── sorting-icons.svg │ │ ├── tooltag-add.svg │ │ └── tooltag-arrowright.svg │ └── js │ │ ├── SelectBox.js │ │ ├── SelectFilter2.js │ │ ├── actions.js │ │ ├── actions.min.js │ │ ├── admin │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ │ ├── autocomplete.js │ │ ├── calendar.js │ │ ├── cancel.js │ │ ├── change_form.js │ │ ├── collapse.js │ │ ├── collapse.min.js │ │ ├── core.js │ │ ├── inlines.js │ │ ├── inlines.min.js │ │ ├── jquery.init.js │ │ ├── popup_response.js │ │ ├── prepopulate.js │ │ ├── prepopulate.min.js │ │ ├── prepopulate_init.js │ │ ├── timeparse.js │ │ ├── urlify.js │ │ └── vendor │ │ ├── jquery │ │ ├── LICENSE.txt │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── select2 │ │ ├── LICENSE.md │ │ ├── i18n │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ └── select2.full.min.js │ │ └── xregexp │ │ ├── LICENSE.txt │ │ ├── xregexp.js │ │ └── xregexp.min.js │ ├── css │ ├── custom.css │ ├── default-skin │ │ ├── default-skin.css │ │ ├── default-skin.png │ │ ├── default-skin.svg │ │ └── preloader.gif │ ├── style.css │ ├── style.min.css │ ├── styles-merged.css │ ├── styles-merged.css.map │ └── vendor │ │ ├── animate.css │ │ ├── bootstrap.min.css │ │ ├── default-skin.css │ │ ├── flexslider.css │ │ ├── icomoon.css │ │ ├── magnific-popup.css │ │ ├── owl.carousel.min.css │ │ ├── owl.theme.default.min.css │ │ └── photoswipe.css │ ├── fonts │ ├── icomoon demo │ │ ├── Read Me.txt │ │ ├── demo-files │ │ │ ├── demo.css │ │ │ └── demo.js │ │ ├── demo.html │ │ ├── fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ ├── selection.json │ │ └── style.css │ └── icomoon │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ ├── img │ ├── flaticon │ │ ├── backup.txt │ │ ├── license │ │ │ └── license.pdf │ │ └── svg │ │ │ ├── 001-prize.svg │ │ │ ├── 002-camera.svg │ │ │ ├── 003-fence.svg │ │ │ ├── 004-house.svg │ │ │ ├── 005-new.svg │ │ │ └── 006-coin.svg │ ├── loc.png │ ├── person_1.jpg │ ├── person_2.jpg │ ├── person_3.jpg │ ├── person_4.jpg │ ├── preloader.gif │ ├── slider_1.jpg │ ├── slider_2.jpg │ ├── slider_3.jpg │ ├── slider_4.jpg │ └── slider_5.jpg │ ├── js │ ├── custom.js │ ├── google-map.js │ ├── main.js │ ├── main.min.js │ ├── scripts.js │ ├── scripts.min.js │ └── vendor │ │ ├── bootstrap.min.js │ │ ├── circle-progress.min.js │ │ ├── html5shiv.min.js │ │ ├── jquery.appear.js │ │ ├── jquery.appear.min.js │ │ ├── jquery.countTo.js │ │ ├── jquery.easing.1.3.js │ │ ├── jquery.flexslider-min.js │ │ ├── jquery.magnific-popup.min.js │ │ ├── jquery.min.js │ │ ├── jquery.stellar.min.js │ │ ├── jquery.waypoints.min.js │ │ ├── owl.carousel.min.js │ │ └── respond.min.js │ ├── location_field │ ├── images │ │ ├── layers-2x.png │ │ ├── layers.png │ │ ├── marker-icon-2x.png │ │ ├── marker-icon.png │ │ └── marker-shadow.png │ ├── js │ │ ├── form.js │ │ └── jquery.livequery.js │ ├── l.control.geosearch.js │ ├── l.geosearch.provider.google.js │ ├── leaflet-google.js │ ├── leaflet.css │ └── leaflet.js │ └── scss │ ├── _custom-settings.scss │ └── style.scss └── templates └── base.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/README.md -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/about/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/.DS_Store -------------------------------------------------------------------------------- /src/about/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/about/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /src/about/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /src/about/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /src/about/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /src/about/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /src/about/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/admin.py -------------------------------------------------------------------------------- /src/about/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/apps.py -------------------------------------------------------------------------------- /src/about/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/about/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/about/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /src/about/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /src/about/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/models.py -------------------------------------------------------------------------------- /src/about/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/templates/.DS_Store -------------------------------------------------------------------------------- /src/about/templates/about/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/templates/about/about.html -------------------------------------------------------------------------------- /src/about/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/tests.py -------------------------------------------------------------------------------- /src/about/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/urls.py -------------------------------------------------------------------------------- /src/about/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/about/views.py -------------------------------------------------------------------------------- /src/agents/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/.DS_Store -------------------------------------------------------------------------------- /src/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agents/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /src/agents/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /src/agents/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /src/agents/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /src/agents/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /src/agents/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/admin.py -------------------------------------------------------------------------------- /src/agents/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/apps.py -------------------------------------------------------------------------------- /src/agents/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/agents/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agents/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /src/agents/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /src/agents/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/models.py -------------------------------------------------------------------------------- /src/agents/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/templates/.DS_Store -------------------------------------------------------------------------------- /src/agents/templates/agents/agents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/templates/agents/agents.html -------------------------------------------------------------------------------- /src/agents/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/tests.py -------------------------------------------------------------------------------- /src/agents/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/urls.py -------------------------------------------------------------------------------- /src/agents/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/agents/views.py -------------------------------------------------------------------------------- /src/contact/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/.DS_Store -------------------------------------------------------------------------------- /src/contact/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/contact/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /src/contact/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /src/contact/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /src/contact/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /src/contact/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /src/contact/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /src/contact/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/admin.py -------------------------------------------------------------------------------- /src/contact/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/apps.py -------------------------------------------------------------------------------- /src/contact/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/forms.py -------------------------------------------------------------------------------- /src/contact/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/contact/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/contact/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /src/contact/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /src/contact/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/models.py -------------------------------------------------------------------------------- /src/contact/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/templates/.DS_Store -------------------------------------------------------------------------------- /src/contact/templates/contact/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/templates/contact/contact.html -------------------------------------------------------------------------------- /src/contact/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/tests.py -------------------------------------------------------------------------------- /src/contact/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/urls.py -------------------------------------------------------------------------------- /src/contact/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/contact/views.py -------------------------------------------------------------------------------- /src/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/db.sqlite3 -------------------------------------------------------------------------------- /src/home/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/home/.DS_Store -------------------------------------------------------------------------------- /src/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/home/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/home/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /src/home/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/home/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /src/home/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/home/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /src/home/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/home/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /src/home/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/home/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /src/home/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/home/admin.py -------------------------------------------------------------------------------- /src/home/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/home/apps.py -------------------------------------------------------------------------------- /src/home/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/home/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/home/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /src/home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/home/models.py -------------------------------------------------------------------------------- /src/home/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/home/templates/.DS_Store -------------------------------------------------------------------------------- /src/home/templates/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/home/templates/home/home.html -------------------------------------------------------------------------------- /src/home/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/home/tests.py -------------------------------------------------------------------------------- /src/home/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/home/urls.py -------------------------------------------------------------------------------- /src/home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/home/views.py -------------------------------------------------------------------------------- /src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/manage.py -------------------------------------------------------------------------------- /src/media/about/Main-Image_iStock-848x493.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/media/about/Main-Image_iStock-848x493.jpg -------------------------------------------------------------------------------- /src/media/about/Main-Image_iStock-848x493_keCrcwA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/media/about/Main-Image_iStock-848x493_keCrcwA.jpg -------------------------------------------------------------------------------- /src/media/agents/1b3f66d8e37195b7d056b6f8954273e0-hipster-male-character-2-by-vexels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/media/agents/1b3f66d8e37195b7d056b6f8954273e0-hipster-male-character-2-by-vexels.png -------------------------------------------------------------------------------- /src/media/category/GettyImages-538096543_medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/media/category/GettyImages-538096543_medium.jpg -------------------------------------------------------------------------------- /src/media/category/GettyImages-540763429-584ed3443df78c491ee81d01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/media/category/GettyImages-540763429-584ed3443df78c491ee81d01.jpg -------------------------------------------------------------------------------- /src/media/category/San_Francisco_California._June_2017_cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/media/category/San_Francisco_California._June_2017_cropped.jpg -------------------------------------------------------------------------------- /src/media/property/1400987123864.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/media/property/1400987123864.jpeg -------------------------------------------------------------------------------- /src/media/property/54850_3971_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/media/property/54850_3971_001.jpg -------------------------------------------------------------------------------- /src/media/property/San_Francisco_California._June_2017_cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/media/property/San_Francisco_California._June_2017_cropped.jpg -------------------------------------------------------------------------------- /src/oytline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/oytline.txt -------------------------------------------------------------------------------- /src/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/project/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/project/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /src/project/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/project/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /src/project/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/project/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /src/project/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/project/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /src/project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/project/settings.py -------------------------------------------------------------------------------- /src/project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/project/urls.py -------------------------------------------------------------------------------- /src/project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/project/wsgi.py -------------------------------------------------------------------------------- /src/property/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/.DS_Store -------------------------------------------------------------------------------- /src/property/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/property/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/admin.py -------------------------------------------------------------------------------- /src/property/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/apps.py -------------------------------------------------------------------------------- /src/property/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/forms.py -------------------------------------------------------------------------------- /src/property/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/property/migrations/0002_auto_20190111_2012.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/0002_auto_20190111_2012.py -------------------------------------------------------------------------------- /src/property/migrations/0003_property_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/0003_property_image.py -------------------------------------------------------------------------------- /src/property/migrations/0004_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/0004_category.py -------------------------------------------------------------------------------- /src/property/migrations/0005_property_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/0005_property_category.py -------------------------------------------------------------------------------- /src/property/migrations/0006_auto_20190111_2243.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/0006_auto_20190111_2243.py -------------------------------------------------------------------------------- /src/property/migrations/0007_reserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/0007_reserve.py -------------------------------------------------------------------------------- /src/property/migrations/0008_category_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/0008_category_image.py -------------------------------------------------------------------------------- /src/property/migrations/0009_property_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/0009_property_location.py -------------------------------------------------------------------------------- /src/property/migrations/0010_auto_20190115_1602.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/0010_auto_20190115_1602.py -------------------------------------------------------------------------------- /src/property/migrations/0011_property_city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/0011_property_city.py -------------------------------------------------------------------------------- /src/property/migrations/0012_auto_20190115_1611.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/0012_auto_20190115_1611.py -------------------------------------------------------------------------------- /src/property/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/property/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/migrations/__pycache__/0002_auto_20190111_2012.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/__pycache__/0002_auto_20190111_2012.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/migrations/__pycache__/0003_property_image.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/__pycache__/0003_property_image.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/migrations/__pycache__/0004_category.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/__pycache__/0004_category.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/migrations/__pycache__/0005_property_category.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/__pycache__/0005_property_category.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/migrations/__pycache__/0006_auto_20190111_2243.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/__pycache__/0006_auto_20190111_2243.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/migrations/__pycache__/0007_reserve.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/__pycache__/0007_reserve.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/migrations/__pycache__/0008_category_image.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/__pycache__/0008_category_image.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/migrations/__pycache__/0009_property_location.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/__pycache__/0009_property_location.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/migrations/__pycache__/0010_auto_20190115_1601.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/__pycache__/0010_auto_20190115_1601.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/migrations/__pycache__/0010_auto_20190115_1602.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/__pycache__/0010_auto_20190115_1602.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/migrations/__pycache__/0011_property_city.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/__pycache__/0011_property_city.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/migrations/__pycache__/0012_auto_20190115_1611.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/__pycache__/0012_auto_20190115_1611.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /src/property/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/models.py -------------------------------------------------------------------------------- /src/property/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/templates/.DS_Store -------------------------------------------------------------------------------- /src/property/templates/property/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/templates/property/detail.html -------------------------------------------------------------------------------- /src/property/templates/property/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/templates/property/list.html -------------------------------------------------------------------------------- /src/property/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/tests.py -------------------------------------------------------------------------------- /src/property/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/urls.py -------------------------------------------------------------------------------- /src/property/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/property/views.py -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/requirements.txt -------------------------------------------------------------------------------- /src/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/.DS_Store -------------------------------------------------------------------------------- /src/static/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/.DS_Store -------------------------------------------------------------------------------- /src/static/css/custom.css: -------------------------------------------------------------------------------- 1 | /* Your custom css code goes here */ -------------------------------------------------------------------------------- /src/static/css/default-skin/default-skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/default-skin/default-skin.css -------------------------------------------------------------------------------- /src/static/css/default-skin/default-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/default-skin/default-skin.png -------------------------------------------------------------------------------- /src/static/css/default-skin/default-skin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/default-skin/default-skin.svg -------------------------------------------------------------------------------- /src/static/css/default-skin/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/default-skin/preloader.gif -------------------------------------------------------------------------------- /src/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/style.css -------------------------------------------------------------------------------- /src/static/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/style.min.css -------------------------------------------------------------------------------- /src/static/css/styles-merged.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/styles-merged.css -------------------------------------------------------------------------------- /src/static/css/styles-merged.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/styles-merged.css.map -------------------------------------------------------------------------------- /src/static/css/vendor/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/vendor/animate.css -------------------------------------------------------------------------------- /src/static/css/vendor/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/vendor/bootstrap.min.css -------------------------------------------------------------------------------- /src/static/css/vendor/default-skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/vendor/default-skin.css -------------------------------------------------------------------------------- /src/static/css/vendor/flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/vendor/flexslider.css -------------------------------------------------------------------------------- /src/static/css/vendor/icomoon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/vendor/icomoon.css -------------------------------------------------------------------------------- /src/static/css/vendor/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/vendor/magnific-popup.css -------------------------------------------------------------------------------- /src/static/css/vendor/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/vendor/owl.carousel.min.css -------------------------------------------------------------------------------- /src/static/css/vendor/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/vendor/owl.theme.default.min.css -------------------------------------------------------------------------------- /src/static/css/vendor/photoswipe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/css/vendor/photoswipe.css -------------------------------------------------------------------------------- /src/static/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/.DS_Store -------------------------------------------------------------------------------- /src/static/fonts/icomoon demo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/icomoon demo/.DS_Store -------------------------------------------------------------------------------- /src/static/fonts/icomoon demo/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/icomoon demo/Read Me.txt -------------------------------------------------------------------------------- /src/static/fonts/icomoon demo/demo-files/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/icomoon demo/demo-files/demo.css -------------------------------------------------------------------------------- /src/static/fonts/icomoon demo/demo-files/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/icomoon demo/demo-files/demo.js -------------------------------------------------------------------------------- /src/static/fonts/icomoon demo/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/icomoon demo/demo.html -------------------------------------------------------------------------------- /src/static/fonts/icomoon demo/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/icomoon demo/fonts/icomoon.eot -------------------------------------------------------------------------------- /src/static/fonts/icomoon demo/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/icomoon demo/fonts/icomoon.svg -------------------------------------------------------------------------------- /src/static/fonts/icomoon demo/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/icomoon demo/fonts/icomoon.ttf -------------------------------------------------------------------------------- /src/static/fonts/icomoon demo/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/icomoon demo/fonts/icomoon.woff -------------------------------------------------------------------------------- /src/static/fonts/icomoon demo/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/icomoon demo/selection.json -------------------------------------------------------------------------------- /src/static/fonts/icomoon demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/icomoon demo/style.css -------------------------------------------------------------------------------- /src/static/fonts/icomoon/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/icomoon/icomoon.eot -------------------------------------------------------------------------------- /src/static/fonts/icomoon/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/icomoon/icomoon.svg -------------------------------------------------------------------------------- /src/static/fonts/icomoon/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/icomoon/icomoon.ttf -------------------------------------------------------------------------------- /src/static/fonts/icomoon/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/fonts/icomoon/icomoon.woff -------------------------------------------------------------------------------- /src/static/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/.DS_Store -------------------------------------------------------------------------------- /src/static/img/flaticon/backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/flaticon/backup.txt -------------------------------------------------------------------------------- /src/static/img/flaticon/license/license.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/flaticon/license/license.pdf -------------------------------------------------------------------------------- /src/static/img/flaticon/svg/001-prize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/flaticon/svg/001-prize.svg -------------------------------------------------------------------------------- /src/static/img/flaticon/svg/002-camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/flaticon/svg/002-camera.svg -------------------------------------------------------------------------------- /src/static/img/flaticon/svg/003-fence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/flaticon/svg/003-fence.svg -------------------------------------------------------------------------------- /src/static/img/flaticon/svg/004-house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/flaticon/svg/004-house.svg -------------------------------------------------------------------------------- /src/static/img/flaticon/svg/005-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/flaticon/svg/005-new.svg -------------------------------------------------------------------------------- /src/static/img/flaticon/svg/006-coin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/flaticon/svg/006-coin.svg -------------------------------------------------------------------------------- /src/static/img/loc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/loc.png -------------------------------------------------------------------------------- /src/static/img/person_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/person_1.jpg -------------------------------------------------------------------------------- /src/static/img/person_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/person_2.jpg -------------------------------------------------------------------------------- /src/static/img/person_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/person_3.jpg -------------------------------------------------------------------------------- /src/static/img/person_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/person_4.jpg -------------------------------------------------------------------------------- /src/static/img/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/preloader.gif -------------------------------------------------------------------------------- /src/static/img/slider_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/slider_1.jpg -------------------------------------------------------------------------------- /src/static/img/slider_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/slider_2.jpg -------------------------------------------------------------------------------- /src/static/img/slider_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/slider_3.jpg -------------------------------------------------------------------------------- /src/static/img/slider_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/slider_4.jpg -------------------------------------------------------------------------------- /src/static/img/slider_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/img/slider_5.jpg -------------------------------------------------------------------------------- /src/static/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/.DS_Store -------------------------------------------------------------------------------- /src/static/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/custom.js -------------------------------------------------------------------------------- /src/static/js/google-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/google-map.js -------------------------------------------------------------------------------- /src/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/main.js -------------------------------------------------------------------------------- /src/static/js/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/main.min.js -------------------------------------------------------------------------------- /src/static/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/scripts.js -------------------------------------------------------------------------------- /src/static/js/scripts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/scripts.min.js -------------------------------------------------------------------------------- /src/static/js/vendor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/vendor/.DS_Store -------------------------------------------------------------------------------- /src/static/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /src/static/js/vendor/circle-progress.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/vendor/circle-progress.min.js -------------------------------------------------------------------------------- /src/static/js/vendor/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/vendor/html5shiv.min.js -------------------------------------------------------------------------------- /src/static/js/vendor/jquery.appear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/vendor/jquery.appear.js -------------------------------------------------------------------------------- /src/static/js/vendor/jquery.appear.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/vendor/jquery.appear.min.js -------------------------------------------------------------------------------- /src/static/js/vendor/jquery.countTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/vendor/jquery.countTo.js -------------------------------------------------------------------------------- /src/static/js/vendor/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/vendor/jquery.easing.1.3.js -------------------------------------------------------------------------------- /src/static/js/vendor/jquery.flexslider-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/vendor/jquery.flexslider-min.js -------------------------------------------------------------------------------- /src/static/js/vendor/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/vendor/jquery.magnific-popup.min.js -------------------------------------------------------------------------------- /src/static/js/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/vendor/jquery.min.js -------------------------------------------------------------------------------- /src/static/js/vendor/jquery.stellar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/vendor/jquery.stellar.min.js -------------------------------------------------------------------------------- /src/static/js/vendor/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/vendor/jquery.waypoints.min.js -------------------------------------------------------------------------------- /src/static/js/vendor/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/vendor/owl.carousel.min.js -------------------------------------------------------------------------------- /src/static/js/vendor/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/js/vendor/respond.min.js -------------------------------------------------------------------------------- /src/static/scss/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/scss/.DS_Store -------------------------------------------------------------------------------- /src/static/scss/_custom-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/scss/_custom-settings.scss -------------------------------------------------------------------------------- /src/static/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/scss/style.scss -------------------------------------------------------------------------------- /src/static/static_root/admin/css/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/css/autocomplete.css -------------------------------------------------------------------------------- /src/static/static_root/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/css/base.css -------------------------------------------------------------------------------- /src/static/static_root/admin/css/changelists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/css/changelists.css -------------------------------------------------------------------------------- /src/static/static_root/admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/css/dashboard.css -------------------------------------------------------------------------------- /src/static/static_root/admin/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/css/fonts.css -------------------------------------------------------------------------------- /src/static/static_root/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/css/forms.css -------------------------------------------------------------------------------- /src/static/static_root/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/css/login.css -------------------------------------------------------------------------------- /src/static/static_root/admin/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/css/responsive.css -------------------------------------------------------------------------------- /src/static/static_root/admin/css/responsive_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/css/responsive_rtl.css -------------------------------------------------------------------------------- /src/static/static_root/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/css/rtl.css -------------------------------------------------------------------------------- /src/static/static_root/admin/css/vendor/select2/LICENSE-SELECT2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/css/vendor/select2/LICENSE-SELECT2.md -------------------------------------------------------------------------------- /src/static/static_root/admin/css/vendor/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/css/vendor/select2/select2.css -------------------------------------------------------------------------------- /src/static/static_root/admin/css/vendor/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/css/vendor/select2/select2.min.css -------------------------------------------------------------------------------- /src/static/static_root/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/css/widgets.css -------------------------------------------------------------------------------- /src/static/static_root/admin/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/fonts/LICENSE.txt -------------------------------------------------------------------------------- /src/static/static_root/admin/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/fonts/README.txt -------------------------------------------------------------------------------- /src/static/static_root/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /src/static/static_root/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /src/static/static_root/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /src/static/static_root/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/LICENSE -------------------------------------------------------------------------------- /src/static/static_root/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/README.txt -------------------------------------------------------------------------------- /src/static/static_root/admin/img/calendar-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/calendar-icons.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/gis/move_vertex_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/gis/move_vertex_off.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/gis/move_vertex_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/gis/move_vertex_on.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/icon-addlink.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/icon-alert.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/icon-calendar.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/icon-changelink.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/icon-clock.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/icon-deletelink.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/icon-no.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/icon-unknown-alt.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/icon-unknown.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/icon-viewlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/icon-viewlink.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/inline-delete.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/search.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/selector-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/selector-icons.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/sorting-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/sorting-icons.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/tooltag-add.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/img/tooltag-arrowright.svg -------------------------------------------------------------------------------- /src/static/static_root/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/SelectBox.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/SelectFilter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/SelectFilter2.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/actions.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/actions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/actions.min.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/admin/DateTimeShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/admin/DateTimeShortcuts.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/admin/RelatedObjectLookups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/admin/RelatedObjectLookups.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/autocomplete.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/calendar.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/cancel.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/change_form.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/collapse.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/collapse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/collapse.min.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/core.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/inlines.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/inlines.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/inlines.min.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/jquery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/jquery.init.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/popup_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/popup_response.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/prepopulate.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/prepopulate.min.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/prepopulate_init.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/timeparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/timeparse.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/urlify.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/LICENSE.md -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/ar.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/az.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/bg.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/ca.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/cs.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/da.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/de.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/el.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/en.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/es.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/et.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/eu.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/fa.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/fi.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/fr.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/gl.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/he.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/hi.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/hr.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/hu.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/id.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/is.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/it.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/ja.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/km.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/ko.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/lt.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/lv.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/mk.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/ms.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/nb.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/nl.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/pl.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/pt-BR.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/pt.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/ro.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/ru.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/sk.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/sr.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/sv.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/th.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/tr.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/uk.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/vi.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/zh-CN.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/i18n/zh-TW.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/select2.full.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/select2/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/select2/select2.full.min.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/xregexp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/xregexp/LICENSE.txt -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/xregexp/xregexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/xregexp/xregexp.js -------------------------------------------------------------------------------- /src/static/static_root/admin/js/vendor/xregexp/xregexp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/admin/js/vendor/xregexp/xregexp.min.js -------------------------------------------------------------------------------- /src/static/static_root/css/custom.css: -------------------------------------------------------------------------------- 1 | /* Your custom css code goes here */ -------------------------------------------------------------------------------- /src/static/static_root/css/default-skin/default-skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/default-skin/default-skin.css -------------------------------------------------------------------------------- /src/static/static_root/css/default-skin/default-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/default-skin/default-skin.png -------------------------------------------------------------------------------- /src/static/static_root/css/default-skin/default-skin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/default-skin/default-skin.svg -------------------------------------------------------------------------------- /src/static/static_root/css/default-skin/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/default-skin/preloader.gif -------------------------------------------------------------------------------- /src/static/static_root/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/style.css -------------------------------------------------------------------------------- /src/static/static_root/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/style.min.css -------------------------------------------------------------------------------- /src/static/static_root/css/styles-merged.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/styles-merged.css -------------------------------------------------------------------------------- /src/static/static_root/css/styles-merged.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/styles-merged.css.map -------------------------------------------------------------------------------- /src/static/static_root/css/vendor/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/vendor/animate.css -------------------------------------------------------------------------------- /src/static/static_root/css/vendor/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/vendor/bootstrap.min.css -------------------------------------------------------------------------------- /src/static/static_root/css/vendor/default-skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/vendor/default-skin.css -------------------------------------------------------------------------------- /src/static/static_root/css/vendor/flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/vendor/flexslider.css -------------------------------------------------------------------------------- /src/static/static_root/css/vendor/icomoon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/vendor/icomoon.css -------------------------------------------------------------------------------- /src/static/static_root/css/vendor/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/vendor/magnific-popup.css -------------------------------------------------------------------------------- /src/static/static_root/css/vendor/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/vendor/owl.carousel.min.css -------------------------------------------------------------------------------- /src/static/static_root/css/vendor/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/vendor/owl.theme.default.min.css -------------------------------------------------------------------------------- /src/static/static_root/css/vendor/photoswipe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/css/vendor/photoswipe.css -------------------------------------------------------------------------------- /src/static/static_root/fonts/icomoon demo/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/fonts/icomoon demo/Read Me.txt -------------------------------------------------------------------------------- /src/static/static_root/fonts/icomoon demo/demo-files/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/fonts/icomoon demo/demo-files/demo.css -------------------------------------------------------------------------------- /src/static/static_root/fonts/icomoon demo/demo-files/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/fonts/icomoon demo/demo-files/demo.js -------------------------------------------------------------------------------- /src/static/static_root/fonts/icomoon demo/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/fonts/icomoon demo/demo.html -------------------------------------------------------------------------------- /src/static/static_root/fonts/icomoon demo/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/fonts/icomoon demo/fonts/icomoon.eot -------------------------------------------------------------------------------- /src/static/static_root/fonts/icomoon demo/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/fonts/icomoon demo/fonts/icomoon.svg -------------------------------------------------------------------------------- /src/static/static_root/fonts/icomoon demo/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/fonts/icomoon demo/fonts/icomoon.ttf -------------------------------------------------------------------------------- /src/static/static_root/fonts/icomoon demo/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/fonts/icomoon demo/fonts/icomoon.woff -------------------------------------------------------------------------------- /src/static/static_root/fonts/icomoon demo/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/fonts/icomoon demo/selection.json -------------------------------------------------------------------------------- /src/static/static_root/fonts/icomoon demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/fonts/icomoon demo/style.css -------------------------------------------------------------------------------- /src/static/static_root/fonts/icomoon/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/fonts/icomoon/icomoon.eot -------------------------------------------------------------------------------- /src/static/static_root/fonts/icomoon/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/fonts/icomoon/icomoon.svg -------------------------------------------------------------------------------- /src/static/static_root/fonts/icomoon/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/fonts/icomoon/icomoon.ttf -------------------------------------------------------------------------------- /src/static/static_root/fonts/icomoon/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/fonts/icomoon/icomoon.woff -------------------------------------------------------------------------------- /src/static/static_root/img/flaticon/backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/flaticon/backup.txt -------------------------------------------------------------------------------- /src/static/static_root/img/flaticon/license/license.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/flaticon/license/license.pdf -------------------------------------------------------------------------------- /src/static/static_root/img/flaticon/svg/001-prize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/flaticon/svg/001-prize.svg -------------------------------------------------------------------------------- /src/static/static_root/img/flaticon/svg/002-camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/flaticon/svg/002-camera.svg -------------------------------------------------------------------------------- /src/static/static_root/img/flaticon/svg/003-fence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/flaticon/svg/003-fence.svg -------------------------------------------------------------------------------- /src/static/static_root/img/flaticon/svg/004-house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/flaticon/svg/004-house.svg -------------------------------------------------------------------------------- /src/static/static_root/img/flaticon/svg/005-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/flaticon/svg/005-new.svg -------------------------------------------------------------------------------- /src/static/static_root/img/flaticon/svg/006-coin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/flaticon/svg/006-coin.svg -------------------------------------------------------------------------------- /src/static/static_root/img/loc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/loc.png -------------------------------------------------------------------------------- /src/static/static_root/img/person_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/person_1.jpg -------------------------------------------------------------------------------- /src/static/static_root/img/person_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/person_2.jpg -------------------------------------------------------------------------------- /src/static/static_root/img/person_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/person_3.jpg -------------------------------------------------------------------------------- /src/static/static_root/img/person_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/person_4.jpg -------------------------------------------------------------------------------- /src/static/static_root/img/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/preloader.gif -------------------------------------------------------------------------------- /src/static/static_root/img/slider_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/slider_1.jpg -------------------------------------------------------------------------------- /src/static/static_root/img/slider_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/slider_2.jpg -------------------------------------------------------------------------------- /src/static/static_root/img/slider_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/slider_3.jpg -------------------------------------------------------------------------------- /src/static/static_root/img/slider_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/slider_4.jpg -------------------------------------------------------------------------------- /src/static/static_root/img/slider_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/img/slider_5.jpg -------------------------------------------------------------------------------- /src/static/static_root/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/custom.js -------------------------------------------------------------------------------- /src/static/static_root/js/google-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/google-map.js -------------------------------------------------------------------------------- /src/static/static_root/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/main.js -------------------------------------------------------------------------------- /src/static/static_root/js/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/main.min.js -------------------------------------------------------------------------------- /src/static/static_root/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/scripts.js -------------------------------------------------------------------------------- /src/static/static_root/js/scripts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/scripts.min.js -------------------------------------------------------------------------------- /src/static/static_root/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /src/static/static_root/js/vendor/circle-progress.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/vendor/circle-progress.min.js -------------------------------------------------------------------------------- /src/static/static_root/js/vendor/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/vendor/html5shiv.min.js -------------------------------------------------------------------------------- /src/static/static_root/js/vendor/jquery.appear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/vendor/jquery.appear.js -------------------------------------------------------------------------------- /src/static/static_root/js/vendor/jquery.appear.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/vendor/jquery.appear.min.js -------------------------------------------------------------------------------- /src/static/static_root/js/vendor/jquery.countTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/vendor/jquery.countTo.js -------------------------------------------------------------------------------- /src/static/static_root/js/vendor/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/vendor/jquery.easing.1.3.js -------------------------------------------------------------------------------- /src/static/static_root/js/vendor/jquery.flexslider-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/vendor/jquery.flexslider-min.js -------------------------------------------------------------------------------- /src/static/static_root/js/vendor/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/vendor/jquery.magnific-popup.min.js -------------------------------------------------------------------------------- /src/static/static_root/js/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/vendor/jquery.min.js -------------------------------------------------------------------------------- /src/static/static_root/js/vendor/jquery.stellar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/vendor/jquery.stellar.min.js -------------------------------------------------------------------------------- /src/static/static_root/js/vendor/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/vendor/jquery.waypoints.min.js -------------------------------------------------------------------------------- /src/static/static_root/js/vendor/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/vendor/owl.carousel.min.js -------------------------------------------------------------------------------- /src/static/static_root/js/vendor/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/js/vendor/respond.min.js -------------------------------------------------------------------------------- /src/static/static_root/location_field/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/location_field/images/layers-2x.png -------------------------------------------------------------------------------- /src/static/static_root/location_field/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/location_field/images/layers.png -------------------------------------------------------------------------------- /src/static/static_root/location_field/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/location_field/images/marker-icon-2x.png -------------------------------------------------------------------------------- /src/static/static_root/location_field/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/location_field/images/marker-icon.png -------------------------------------------------------------------------------- /src/static/static_root/location_field/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/location_field/images/marker-shadow.png -------------------------------------------------------------------------------- /src/static/static_root/location_field/js/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/location_field/js/form.js -------------------------------------------------------------------------------- /src/static/static_root/location_field/js/jquery.livequery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/location_field/js/jquery.livequery.js -------------------------------------------------------------------------------- /src/static/static_root/location_field/l.control.geosearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/location_field/l.control.geosearch.js -------------------------------------------------------------------------------- /src/static/static_root/location_field/l.geosearch.provider.google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/location_field/l.geosearch.provider.google.js -------------------------------------------------------------------------------- /src/static/static_root/location_field/leaflet-google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/location_field/leaflet-google.js -------------------------------------------------------------------------------- /src/static/static_root/location_field/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/location_field/leaflet.css -------------------------------------------------------------------------------- /src/static/static_root/location_field/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/location_field/leaflet.js -------------------------------------------------------------------------------- /src/static/static_root/scss/_custom-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/scss/_custom-settings.scss -------------------------------------------------------------------------------- /src/static/static_root/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/static/static_root/scss/style.scss -------------------------------------------------------------------------------- /src/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Build-Hotel-Site-With-Python-Django/HEAD/src/templates/base.html --------------------------------------------------------------------------------