├── .gitignore ├── LICENSE ├── README.md ├── db.sqlite3 ├── find-my-place ├── __init__.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py ├── manage.py ├── requirements.txt ├── static ├── css │ └── bootstrap.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── images │ ├── contact-us.png │ ├── footer-git.png │ ├── image1.png │ ├── image2.png │ ├── image3.png │ ├── image4.png │ ├── image5.png │ ├── image6.png │ ├── image7.png │ ├── image8.png │ └── logo.png └── templates ├── 400.html ├── 404.html ├── 500.html ├── about.html ├── base.html ├── contact.html ├── display_list.html ├── search.html └── thanks.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/README.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /find-my-place/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /find-my-place/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/find-my-place/settings.py -------------------------------------------------------------------------------- /find-my-place/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/find-my-place/urls.py -------------------------------------------------------------------------------- /find-my-place/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/find-my-place/views.py -------------------------------------------------------------------------------- /find-my-place/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/find-my-place/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/images/contact-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/images/contact-us.png -------------------------------------------------------------------------------- /static/images/footer-git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/images/footer-git.png -------------------------------------------------------------------------------- /static/images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/images/image1.png -------------------------------------------------------------------------------- /static/images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/images/image2.png -------------------------------------------------------------------------------- /static/images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/images/image3.png -------------------------------------------------------------------------------- /static/images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/images/image4.png -------------------------------------------------------------------------------- /static/images/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/images/image5.png -------------------------------------------------------------------------------- /static/images/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/images/image6.png -------------------------------------------------------------------------------- /static/images/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/images/image7.png -------------------------------------------------------------------------------- /static/images/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/images/image8.png -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /templates/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/templates/400.html -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/templates/500.html -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/templates/contact.html -------------------------------------------------------------------------------- /templates/display_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/templates/display_list.html -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/templates/search.html -------------------------------------------------------------------------------- /templates/thanks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diksha-Rathi/find-my-place/HEAD/templates/thanks.html --------------------------------------------------------------------------------