├── 01projectone └── helloworld │ ├── db.sqlite3 │ ├── helloworld │ ├── __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 │ ├── hola │ ├── __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 │ ├── tests.py │ ├── urls.py │ └── views.py │ └── manage.py ├── 02projecttwo └── mytemplate │ ├── db.sqlite3 │ ├── manage.py │ ├── mytemplate │ ├── __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 │ ├── templates │ ├── about.html │ ├── contact.html │ ├── home.html │ └── nav.html │ └── website │ ├── __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 │ ├── tests.py │ ├── urls.py │ └── views.py ├── 03projectthree └── commandr │ ├── cmdr │ ├── __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 │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── commandr │ ├── __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 │ ├── db.sqlite3 │ ├── manage.py │ └── templates │ └── home.html ├── 04projectfour └── website │ ├── articles │ ├── __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 │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── db.sqlite3 │ ├── manage.py │ ├── static │ └── css │ │ └── basestyles.css │ ├── templates │ ├── base.html │ ├── detail.html │ └── home.html │ └── website │ ├── __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 ├── 05projectfive └── mywebsite │ ├── db.sqlite3 │ ├── manage.py │ ├── mywebsite │ ├── __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 │ └── videorequest │ ├── __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_20180131_2059.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_auto_20180131_2059.cpython-36.pyc │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── static │ └── videorequest │ │ ├── bootstrap.min.css │ │ ├── theme.css │ │ └── vrform.css │ ├── templates │ └── videorequest │ │ ├── index.html │ │ └── vrform.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── 06projectsix └── website │ ├── articles │ ├── __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 │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── db.sqlite3 │ ├── manage.py │ ├── static │ └── css │ │ └── basestyles.css │ ├── templates │ ├── article_delete.html │ ├── article_edit.html │ ├── article_new.html │ ├── base.html │ ├── detail.html │ └── home.html │ └── website │ ├── __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 ├── 07projectseven └── mywebsite │ ├── db.sqlite3 │ ├── manage.py │ ├── mywebsite │ ├── __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 │ └── todo │ ├── __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 │ ├── static │ └── todo │ │ ├── css │ │ ├── flatly.min.css │ │ └── styles.css │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── templates │ └── todo │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── 08projecteight └── website │ ├── accounts │ ├── __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 │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── articles │ ├── __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 │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── db.sqlite3 │ ├── manage.py │ ├── static │ └── css │ │ └── basestyles.css │ ├── templates │ ├── base.html │ ├── detail.html │ ├── home.html │ ├── registration │ │ └── login.html │ └── signup.html │ └── website │ ├── __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 ├── VideoReqFiles ├── bootstrap.min.css ├── index.html ├── theme.css ├── vrform.css └── vrform.html ├── button.html ├── login.css └── todo_assets └── todo ├── css ├── flatly.min.css └── styles.css ├── index.html └── js ├── bootstrap.js ├── bootstrap.min.js └── npm.js /01projectone/helloworld/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01projectone/helloworld/helloworld/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01projectone/helloworld/helloworld/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/helloworld/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /01projectone/helloworld/helloworld/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/helloworld/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /01projectone/helloworld/helloworld/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/helloworld/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /01projectone/helloworld/helloworld/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/helloworld/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /01projectone/helloworld/helloworld/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/helloworld/settings.py -------------------------------------------------------------------------------- /01projectone/helloworld/helloworld/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/helloworld/urls.py -------------------------------------------------------------------------------- /01projectone/helloworld/helloworld/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/helloworld/wsgi.py -------------------------------------------------------------------------------- /01projectone/helloworld/hola/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01projectone/helloworld/hola/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/hola/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /01projectone/helloworld/hola/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/hola/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /01projectone/helloworld/hola/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/hola/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /01projectone/helloworld/hola/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/hola/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /01projectone/helloworld/hola/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/hola/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /01projectone/helloworld/hola/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/hola/admin.py -------------------------------------------------------------------------------- /01projectone/helloworld/hola/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/hola/apps.py -------------------------------------------------------------------------------- /01projectone/helloworld/hola/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01projectone/helloworld/hola/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/hola/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /01projectone/helloworld/hola/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/hola/models.py -------------------------------------------------------------------------------- /01projectone/helloworld/hola/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/hola/tests.py -------------------------------------------------------------------------------- /01projectone/helloworld/hola/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/hola/urls.py -------------------------------------------------------------------------------- /01projectone/helloworld/hola/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/hola/views.py -------------------------------------------------------------------------------- /01projectone/helloworld/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/01projectone/helloworld/manage.py -------------------------------------------------------------------------------- /02projecttwo/mytemplate/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02projecttwo/mytemplate/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/manage.py -------------------------------------------------------------------------------- /02projecttwo/mytemplate/mytemplate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02projecttwo/mytemplate/mytemplate/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/mytemplate/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /02projecttwo/mytemplate/mytemplate/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/mytemplate/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /02projecttwo/mytemplate/mytemplate/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/mytemplate/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /02projecttwo/mytemplate/mytemplate/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/mytemplate/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /02projecttwo/mytemplate/mytemplate/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/mytemplate/settings.py -------------------------------------------------------------------------------- /02projecttwo/mytemplate/mytemplate/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/mytemplate/urls.py -------------------------------------------------------------------------------- /02projecttwo/mytemplate/mytemplate/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/mytemplate/wsgi.py -------------------------------------------------------------------------------- /02projecttwo/mytemplate/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/templates/about.html -------------------------------------------------------------------------------- /02projecttwo/mytemplate/templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/templates/contact.html -------------------------------------------------------------------------------- /02projecttwo/mytemplate/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/templates/home.html -------------------------------------------------------------------------------- /02projecttwo/mytemplate/templates/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/templates/nav.html -------------------------------------------------------------------------------- /02projecttwo/mytemplate/website/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02projecttwo/mytemplate/website/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/website/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /02projecttwo/mytemplate/website/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/website/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /02projecttwo/mytemplate/website/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/website/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /02projecttwo/mytemplate/website/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/website/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /02projecttwo/mytemplate/website/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/website/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /02projecttwo/mytemplate/website/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/website/admin.py -------------------------------------------------------------------------------- /02projecttwo/mytemplate/website/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/website/apps.py -------------------------------------------------------------------------------- /02projecttwo/mytemplate/website/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02projecttwo/mytemplate/website/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/website/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /02projecttwo/mytemplate/website/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/website/models.py -------------------------------------------------------------------------------- /02projecttwo/mytemplate/website/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/website/tests.py -------------------------------------------------------------------------------- /02projecttwo/mytemplate/website/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/website/urls.py -------------------------------------------------------------------------------- /02projecttwo/mytemplate/website/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/02projecttwo/mytemplate/website/views.py -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/cmdr/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/cmdr/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/cmdr/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/cmdr/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/cmdr/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/cmdr/admin.py -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/cmdr/apps.py -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/cmdr/migrations/0001_initial.py -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/cmdr/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/cmdr/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/cmdr/models.py -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/cmdr/tests.py -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/cmdr/urls.py -------------------------------------------------------------------------------- /03projectthree/commandr/cmdr/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/cmdr/views.py -------------------------------------------------------------------------------- /03projectthree/commandr/commandr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03projectthree/commandr/commandr/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/commandr/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /03projectthree/commandr/commandr/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/commandr/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /03projectthree/commandr/commandr/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/commandr/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /03projectthree/commandr/commandr/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/commandr/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /03projectthree/commandr/commandr/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/commandr/settings.py -------------------------------------------------------------------------------- /03projectthree/commandr/commandr/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/commandr/urls.py -------------------------------------------------------------------------------- /03projectthree/commandr/commandr/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/commandr/wsgi.py -------------------------------------------------------------------------------- /03projectthree/commandr/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/db.sqlite3 -------------------------------------------------------------------------------- /03projectthree/commandr/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/manage.py -------------------------------------------------------------------------------- /03projectthree/commandr/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/03projectthree/commandr/templates/home.html -------------------------------------------------------------------------------- /04projectfour/website/articles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04projectfour/website/articles/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/articles/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /04projectfour/website/articles/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/articles/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /04projectfour/website/articles/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/articles/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /04projectfour/website/articles/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/articles/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /04projectfour/website/articles/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/articles/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /04projectfour/website/articles/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/articles/admin.py -------------------------------------------------------------------------------- /04projectfour/website/articles/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/articles/apps.py -------------------------------------------------------------------------------- /04projectfour/website/articles/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/articles/migrations/0001_initial.py -------------------------------------------------------------------------------- /04projectfour/website/articles/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04projectfour/website/articles/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/articles/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /04projectfour/website/articles/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/articles/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /04projectfour/website/articles/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/articles/models.py -------------------------------------------------------------------------------- /04projectfour/website/articles/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/articles/tests.py -------------------------------------------------------------------------------- /04projectfour/website/articles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/articles/urls.py -------------------------------------------------------------------------------- /04projectfour/website/articles/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/articles/views.py -------------------------------------------------------------------------------- /04projectfour/website/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/db.sqlite3 -------------------------------------------------------------------------------- /04projectfour/website/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/manage.py -------------------------------------------------------------------------------- /04projectfour/website/static/css/basestyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/static/css/basestyles.css -------------------------------------------------------------------------------- /04projectfour/website/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/templates/base.html -------------------------------------------------------------------------------- /04projectfour/website/templates/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/templates/detail.html -------------------------------------------------------------------------------- /04projectfour/website/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/templates/home.html -------------------------------------------------------------------------------- /04projectfour/website/website/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04projectfour/website/website/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/website/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /04projectfour/website/website/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/website/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /04projectfour/website/website/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/website/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /04projectfour/website/website/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/website/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /04projectfour/website/website/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/website/settings.py -------------------------------------------------------------------------------- /04projectfour/website/website/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/website/urls.py -------------------------------------------------------------------------------- /04projectfour/website/website/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/04projectfour/website/website/wsgi.py -------------------------------------------------------------------------------- /05projectfive/mywebsite/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/db.sqlite3 -------------------------------------------------------------------------------- /05projectfive/mywebsite/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/manage.py -------------------------------------------------------------------------------- /05projectfive/mywebsite/mywebsite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05projectfive/mywebsite/mywebsite/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/mywebsite/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /05projectfive/mywebsite/mywebsite/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/mywebsite/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /05projectfive/mywebsite/mywebsite/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/mywebsite/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /05projectfive/mywebsite/mywebsite/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/mywebsite/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /05projectfive/mywebsite/mywebsite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/mywebsite/settings.py -------------------------------------------------------------------------------- /05projectfive/mywebsite/mywebsite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/mywebsite/urls.py -------------------------------------------------------------------------------- /05projectfive/mywebsite/mywebsite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/mywebsite/wsgi.py -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/admin.py -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/apps.py -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/forms.py -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/migrations/0001_initial.py -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/migrations/0002_auto_20180131_2059.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/migrations/0002_auto_20180131_2059.py -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/migrations/__pycache__/0002_auto_20180131_2059.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/migrations/__pycache__/0002_auto_20180131_2059.cpython-36.pyc -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/models.py -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/static/videorequest/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/static/videorequest/bootstrap.min.css -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/static/videorequest/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/static/videorequest/theme.css -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/static/videorequest/vrform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/static/videorequest/vrform.css -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/templates/videorequest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/templates/videorequest/index.html -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/templates/videorequest/vrform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/templates/videorequest/vrform.html -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/tests.py -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/urls.py -------------------------------------------------------------------------------- /05projectfive/mywebsite/videorequest/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/05projectfive/mywebsite/videorequest/views.py -------------------------------------------------------------------------------- /06projectsix/website/articles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /06projectsix/website/articles/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/articles/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /06projectsix/website/articles/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/articles/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /06projectsix/website/articles/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/articles/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /06projectsix/website/articles/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/articles/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /06projectsix/website/articles/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/articles/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /06projectsix/website/articles/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/articles/admin.py -------------------------------------------------------------------------------- /06projectsix/website/articles/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/articles/apps.py -------------------------------------------------------------------------------- /06projectsix/website/articles/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/articles/migrations/0001_initial.py -------------------------------------------------------------------------------- /06projectsix/website/articles/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /06projectsix/website/articles/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/articles/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /06projectsix/website/articles/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/articles/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /06projectsix/website/articles/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/articles/models.py -------------------------------------------------------------------------------- /06projectsix/website/articles/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/articles/tests.py -------------------------------------------------------------------------------- /06projectsix/website/articles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/articles/urls.py -------------------------------------------------------------------------------- /06projectsix/website/articles/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/articles/views.py -------------------------------------------------------------------------------- /06projectsix/website/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/db.sqlite3 -------------------------------------------------------------------------------- /06projectsix/website/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/manage.py -------------------------------------------------------------------------------- /06projectsix/website/static/css/basestyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/static/css/basestyles.css -------------------------------------------------------------------------------- /06projectsix/website/templates/article_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/templates/article_delete.html -------------------------------------------------------------------------------- /06projectsix/website/templates/article_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/templates/article_edit.html -------------------------------------------------------------------------------- /06projectsix/website/templates/article_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/templates/article_new.html -------------------------------------------------------------------------------- /06projectsix/website/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/templates/base.html -------------------------------------------------------------------------------- /06projectsix/website/templates/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/templates/detail.html -------------------------------------------------------------------------------- /06projectsix/website/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/templates/home.html -------------------------------------------------------------------------------- /06projectsix/website/website/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /06projectsix/website/website/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/website/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /06projectsix/website/website/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/website/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /06projectsix/website/website/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/website/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /06projectsix/website/website/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/website/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /06projectsix/website/website/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/website/settings.py -------------------------------------------------------------------------------- /06projectsix/website/website/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/website/urls.py -------------------------------------------------------------------------------- /06projectsix/website/website/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/06projectsix/website/website/wsgi.py -------------------------------------------------------------------------------- /07projectseven/mywebsite/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/db.sqlite3 -------------------------------------------------------------------------------- /07projectseven/mywebsite/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/manage.py -------------------------------------------------------------------------------- /07projectseven/mywebsite/mywebsite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07projectseven/mywebsite/mywebsite/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/mywebsite/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /07projectseven/mywebsite/mywebsite/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/mywebsite/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /07projectseven/mywebsite/mywebsite/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/mywebsite/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /07projectseven/mywebsite/mywebsite/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/mywebsite/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /07projectseven/mywebsite/mywebsite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/mywebsite/settings.py -------------------------------------------------------------------------------- /07projectseven/mywebsite/mywebsite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/mywebsite/urls.py -------------------------------------------------------------------------------- /07projectseven/mywebsite/mywebsite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/mywebsite/wsgi.py -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/admin.py -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/apps.py -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/forms.py -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/migrations/0001_initial.py -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/models.py -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/static/todo/css/flatly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/static/todo/css/flatly.min.css -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/static/todo/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/static/todo/css/styles.css -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/static/todo/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/static/todo/js/bootstrap.js -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/static/todo/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/static/todo/js/bootstrap.min.js -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/static/todo/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/static/todo/js/npm.js -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/templates/todo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/templates/todo/index.html -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/tests.py -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/urls.py -------------------------------------------------------------------------------- /07projectseven/mywebsite/todo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/07projectseven/mywebsite/todo/views.py -------------------------------------------------------------------------------- /08projecteight/website/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /08projecteight/website/accounts/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/accounts/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/accounts/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/accounts/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/accounts/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/accounts/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/accounts/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/accounts/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/accounts/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/accounts/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/accounts/admin.py -------------------------------------------------------------------------------- /08projecteight/website/accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/accounts/apps.py -------------------------------------------------------------------------------- /08projecteight/website/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /08projecteight/website/accounts/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/accounts/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/accounts/models.py -------------------------------------------------------------------------------- /08projecteight/website/accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/accounts/tests.py -------------------------------------------------------------------------------- /08projecteight/website/accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/accounts/urls.py -------------------------------------------------------------------------------- /08projecteight/website/accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/accounts/views.py -------------------------------------------------------------------------------- /08projecteight/website/articles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /08projecteight/website/articles/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/articles/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/articles/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/articles/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/articles/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/articles/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/articles/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/articles/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/articles/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/articles/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/articles/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/articles/admin.py -------------------------------------------------------------------------------- /08projecteight/website/articles/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/articles/apps.py -------------------------------------------------------------------------------- /08projecteight/website/articles/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/articles/migrations/0001_initial.py -------------------------------------------------------------------------------- /08projecteight/website/articles/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /08projecteight/website/articles/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/articles/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/articles/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/articles/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/articles/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/articles/models.py -------------------------------------------------------------------------------- /08projecteight/website/articles/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/articles/tests.py -------------------------------------------------------------------------------- /08projecteight/website/articles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/articles/urls.py -------------------------------------------------------------------------------- /08projecteight/website/articles/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/articles/views.py -------------------------------------------------------------------------------- /08projecteight/website/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/db.sqlite3 -------------------------------------------------------------------------------- /08projecteight/website/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/manage.py -------------------------------------------------------------------------------- /08projecteight/website/static/css/basestyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/static/css/basestyles.css -------------------------------------------------------------------------------- /08projecteight/website/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/templates/base.html -------------------------------------------------------------------------------- /08projecteight/website/templates/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/templates/detail.html -------------------------------------------------------------------------------- /08projecteight/website/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/templates/home.html -------------------------------------------------------------------------------- /08projecteight/website/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/templates/registration/login.html -------------------------------------------------------------------------------- /08projecteight/website/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/templates/signup.html -------------------------------------------------------------------------------- /08projecteight/website/website/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /08projecteight/website/website/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/website/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/website/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/website/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/website/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/website/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/website/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/website/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /08projecteight/website/website/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/website/settings.py -------------------------------------------------------------------------------- /08projecteight/website/website/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/website/urls.py -------------------------------------------------------------------------------- /08projecteight/website/website/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/08projecteight/website/website/wsgi.py -------------------------------------------------------------------------------- /VideoReqFiles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/VideoReqFiles/bootstrap.min.css -------------------------------------------------------------------------------- /VideoReqFiles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/VideoReqFiles/index.html -------------------------------------------------------------------------------- /VideoReqFiles/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/VideoReqFiles/theme.css -------------------------------------------------------------------------------- /VideoReqFiles/vrform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/VideoReqFiles/vrform.css -------------------------------------------------------------------------------- /VideoReqFiles/vrform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/VideoReqFiles/vrform.html -------------------------------------------------------------------------------- /button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/button.html -------------------------------------------------------------------------------- /login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/login.css -------------------------------------------------------------------------------- /todo_assets/todo/css/flatly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/todo_assets/todo/css/flatly.min.css -------------------------------------------------------------------------------- /todo_assets/todo/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/todo_assets/todo/css/styles.css -------------------------------------------------------------------------------- /todo_assets/todo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/todo_assets/todo/index.html -------------------------------------------------------------------------------- /todo_assets/todo/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/todo_assets/todo/js/bootstrap.js -------------------------------------------------------------------------------- /todo_assets/todo/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/todo_assets/todo/js/bootstrap.min.js -------------------------------------------------------------------------------- /todo_assets/todo/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/DjangoExercise1/HEAD/todo_assets/todo/js/npm.js --------------------------------------------------------------------------------