├── 02-Django Using Visual Studio Code └── 3 - Django Setup Using VS Code.pptx ├── 03-Create A Django App ├── 3- Django Project From Scratch with PyCharm.pptx ├── home.html ├── urls.py └── views.py ├── 04-Allauth and Twitter With Django Authentication ├── 4- Authentication with allauth.pdf ├── Dates │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── date_track │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── apps.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __pycache__ │ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── templates │ │ ├── base.html │ │ ├── home.html │ │ ├── registration │ │ │ └── login.html │ │ └── signup.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── settings.py └── users │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── forms.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ ├── 0001_initial.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── 5-Overriding Allauth Templates with Django ├── 5-Django-Allauth-Override-Templates.pptx └── settings.py ├── Data Visualization Django And Bokeh ├── Bokeh.v1.pptx ├── apps.py ├── combo.html ├── home.html ├── models.py ├── multi_plot.html ├── programming.html ├── starter.html ├── urls.py └── views.py ├── Data Visualization with Django_Chartit └── my_chartit │ ├── chartitApp │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── apps.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_monthlyweatherbycity.py │ │ ├── 0003_auto_20190720_1922.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ ├── 0002_monthlyweatherbycity.cpython-37.pyc │ │ │ ├── 0003_auto_20190720_1922.cpython-37.pyc │ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── templates │ │ ├── citySales.html │ │ ├── pivot.html │ │ ├── sales.1.html │ │ ├── sales.html │ │ ├── weatherBycity.html │ │ └── weatherchart.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── db.sqlite3 │ ├── manage.py │ └── my_chartit │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── wsgi.cpython-37.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── Django-Table Sorting and More ├── Table Sorting and More.pptx ├── base.html └── datatables.html ├── Django-Table-Sorting-On-Date ├── DataTables-Sort-On-Date-Field.pptx └── my_table.html └── README.md /02-Django Using Visual Studio Code/3 - Django Setup Using VS Code.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/02-Django Using Visual Studio Code/3 - Django Setup Using VS Code.pptx -------------------------------------------------------------------------------- /03-Create A Django App/3- Django Project From Scratch with PyCharm.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/03-Create A Django App/3- Django Project From Scratch with PyCharm.pptx -------------------------------------------------------------------------------- /03-Create A Django App/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/03-Create A Django App/home.html -------------------------------------------------------------------------------- /03-Create A Django App/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/03-Create A Django App/urls.py -------------------------------------------------------------------------------- /03-Create A Django App/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/03-Create A Django App/views.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/4- Authentication with allauth.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/4- Authentication with allauth.pdf -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/Dates/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/Dates/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/Dates/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/Dates/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/Dates/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/Dates/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/Dates/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/Dates/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/Dates/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/Dates/settings.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/Dates/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/Dates/urls.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/Dates/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/Dates/wsgi.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/admin.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/apps.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/models.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/templates/base.html -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/templates/home.html -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/templates/registration/login.html -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/templates/signup.html -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/tests.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/urls.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/date_track/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/date_track/views.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/settings.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/admin.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/apps.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/forms.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/models.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/tests.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/urls.py -------------------------------------------------------------------------------- /04-Allauth and Twitter With Django Authentication/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/04-Allauth and Twitter With Django Authentication/users/views.py -------------------------------------------------------------------------------- /5-Overriding Allauth Templates with Django/5-Django-Allauth-Override-Templates.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/5-Overriding Allauth Templates with Django/5-Django-Allauth-Override-Templates.pptx -------------------------------------------------------------------------------- /5-Overriding Allauth Templates with Django/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/5-Overriding Allauth Templates with Django/settings.py -------------------------------------------------------------------------------- /Data Visualization Django And Bokeh/Bokeh.v1.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization Django And Bokeh/Bokeh.v1.pptx -------------------------------------------------------------------------------- /Data Visualization Django And Bokeh/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization Django And Bokeh/apps.py -------------------------------------------------------------------------------- /Data Visualization Django And Bokeh/combo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization Django And Bokeh/combo.html -------------------------------------------------------------------------------- /Data Visualization Django And Bokeh/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization Django And Bokeh/home.html -------------------------------------------------------------------------------- /Data Visualization Django And Bokeh/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization Django And Bokeh/models.py -------------------------------------------------------------------------------- /Data Visualization Django And Bokeh/multi_plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization Django And Bokeh/multi_plot.html -------------------------------------------------------------------------------- /Data Visualization Django And Bokeh/programming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization Django And Bokeh/programming.html -------------------------------------------------------------------------------- /Data Visualization Django And Bokeh/starter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization Django And Bokeh/starter.html -------------------------------------------------------------------------------- /Data Visualization Django And Bokeh/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization Django And Bokeh/urls.py -------------------------------------------------------------------------------- /Data Visualization Django And Bokeh/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization Django And Bokeh/views.py -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/admin.py -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/apps.py -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/migrations/0001_initial.py -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/migrations/0002_monthlyweatherbycity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/migrations/0002_monthlyweatherbycity.py -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/migrations/0003_auto_20190720_1922.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/migrations/0003_auto_20190720_1922.py -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/migrations/__pycache__/0002_monthlyweatherbycity.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/migrations/__pycache__/0002_monthlyweatherbycity.cpython-37.pyc -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/migrations/__pycache__/0003_auto_20190720_1922.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/migrations/__pycache__/0003_auto_20190720_1922.cpython-37.pyc -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/models.py -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/templates/citySales.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/templates/citySales.html -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/templates/pivot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/templates/pivot.html -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/templates/sales.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/templates/sales.1.html -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/templates/sales.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/templates/sales.html -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/templates/weatherBycity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/templates/weatherBycity.html -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/templates/weatherchart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/templates/weatherchart.html -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/tests.py -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/urls.py -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/chartitApp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/chartitApp/views.py -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/db.sqlite3 -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/manage.py -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/my_chartit/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/my_chartit/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/my_chartit/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/my_chartit/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/my_chartit/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/my_chartit/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/my_chartit/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/my_chartit/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/my_chartit/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/my_chartit/settings.py -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/my_chartit/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/my_chartit/urls.py -------------------------------------------------------------------------------- /Data Visualization with Django_Chartit/my_chartit/my_chartit/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Data Visualization with Django_Chartit/my_chartit/my_chartit/wsgi.py -------------------------------------------------------------------------------- /Django-Table Sorting and More/Table Sorting and More.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Django-Table Sorting and More/Table Sorting and More.pptx -------------------------------------------------------------------------------- /Django-Table Sorting and More/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Django-Table Sorting and More/base.html -------------------------------------------------------------------------------- /Django-Table Sorting and More/datatables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Django-Table Sorting and More/datatables.html -------------------------------------------------------------------------------- /Django-Table-Sorting-On-Date/DataTables-Sort-On-Date-Field.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Django-Table-Sorting-On-Date/DataTables-Sort-On-Date-Field.pptx -------------------------------------------------------------------------------- /Django-Table-Sorting-On-Date/my_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/Django-Table-Sorting-On-Date/my_table.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theyogicoderRI/DjangoInchByInch/HEAD/README.md --------------------------------------------------------------------------------