├── dashboard ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── apps.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── urls.cpython-39.pyc │ └── views.cpython-39.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-39.pyc │ │ └── __init__.cpython-39.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── heatmapproject ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── settings.cpython-39.pyc │ ├── urls.cpython-39.pyc │ └── wsgi.cpython-39.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py └── templates ├── dashboard └── index.html └── partials ├── base.html └── nav.html /dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/dashboard/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/dashboard/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/dashboard/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/dashboard/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/dashboard/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/dashboard/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /dashboard/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/dashboard/admin.py -------------------------------------------------------------------------------- /dashboard/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/dashboard/apps.py -------------------------------------------------------------------------------- /dashboard/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/dashboard/migrations/0001_initial.py -------------------------------------------------------------------------------- /dashboard/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/dashboard/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /dashboard/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/dashboard/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /dashboard/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/dashboard/models.py -------------------------------------------------------------------------------- /dashboard/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/dashboard/tests.py -------------------------------------------------------------------------------- /dashboard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/dashboard/urls.py -------------------------------------------------------------------------------- /dashboard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/dashboard/views.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /heatmapproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /heatmapproject/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/heatmapproject/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /heatmapproject/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/heatmapproject/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /heatmapproject/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/heatmapproject/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /heatmapproject/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/heatmapproject/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /heatmapproject/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/heatmapproject/asgi.py -------------------------------------------------------------------------------- /heatmapproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/heatmapproject/settings.py -------------------------------------------------------------------------------- /heatmapproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/heatmapproject/urls.py -------------------------------------------------------------------------------- /heatmapproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/heatmapproject/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/manage.py -------------------------------------------------------------------------------- /templates/dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/templates/dashboard/index.html -------------------------------------------------------------------------------- /templates/partials/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/templates/partials/base.html -------------------------------------------------------------------------------- /templates/partials/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenBroTech/HeatMap-Visualization-with-Folium-and-Django/HEAD/templates/partials/nav.html --------------------------------------------------------------------------------