├── LICENSE ├── README.md ├── Screenshots ├── Django WebApp - Google Chrome 03-12-2019 20_48_45.png ├── Django WebApp - Google Chrome 04-12-2019 13_41_50.png ├── New Tab - Google Chrome 03-12-2019 19_14_36.png ├── New Tab - Google Chrome 03-12-2019 19_14_44.png ├── New Tab - Google Chrome 03-12-2019 19_14_51.png ├── New Tab - Google Chrome 03-12-2019 19_15_47.png └── New Tab - Google Chrome 03-12-2019 19_16_14.png ├── _config.yml └── django_web_app ├── blog ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── apps.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_post_file.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ ├── 0002_post_file.cpython-37.pyc │ │ └── __init__.cpython-37.pyc ├── models.py ├── static │ └── blog │ │ ├── main.css │ │ └── main.js ├── templates │ └── blog │ │ ├── about.html │ │ ├── base.html │ │ ├── home.html │ │ ├── post_confirm_delete.html │ │ ├── post_detail.html │ │ ├── post_form.html │ │ ├── search.html │ │ └── user_posts.html ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── django_web_app ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── wsgi.cpython-37.pyc ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── media ├── Files │ ├── Alan_Walker_-_Faded_Were_are_you_now_mp3.pm.mp3 │ ├── Beautiful.jpg │ ├── IMG-20181225-WA0032.jpg │ ├── Space_Invaders_02-03-2019_11_01_19.mp4 │ ├── Space_Invaders_31-03-2019_10_11_46.mp4 │ ├── canadian_rockies_beauty_wallpaper_g7zor.jpg │ ├── main.py │ ├── project_problem_statement.pdf │ ├── space.wav │ └── speech.py ├── default.jpg └── profile_pics │ ├── 1535657187-5807300-avatar-images.png │ ├── newuser_USxz6fs.png │ ├── profile.jpg │ └── profile_IVTEnjH.jpg └── users ├── __init__.py ├── __pycache__ ├── __init__.cpython-37.pyc ├── admin.cpython-37.pyc ├── apps.cpython-37.pyc ├── forms.cpython-37.pyc ├── models.cpython-37.pyc ├── signals.cpython-37.pyc └── views.cpython-37.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py ├── __init__.py └── __pycache__ │ ├── 0001_initial.cpython-37.pyc │ └── __init__.cpython-37.pyc ├── models.py ├── signals.py ├── templates └── users │ ├── login.html │ ├── logout.html │ ├── profile.html │ └── register.html ├── tests.py └── views.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Django WebApp - Google Chrome 03-12-2019 20_48_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/Screenshots/Django WebApp - Google Chrome 03-12-2019 20_48_45.png -------------------------------------------------------------------------------- /Screenshots/Django WebApp - Google Chrome 04-12-2019 13_41_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/Screenshots/Django WebApp - Google Chrome 04-12-2019 13_41_50.png -------------------------------------------------------------------------------- /Screenshots/New Tab - Google Chrome 03-12-2019 19_14_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/Screenshots/New Tab - Google Chrome 03-12-2019 19_14_36.png -------------------------------------------------------------------------------- /Screenshots/New Tab - Google Chrome 03-12-2019 19_14_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/Screenshots/New Tab - Google Chrome 03-12-2019 19_14_44.png -------------------------------------------------------------------------------- /Screenshots/New Tab - Google Chrome 03-12-2019 19_14_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/Screenshots/New Tab - Google Chrome 03-12-2019 19_14_51.png -------------------------------------------------------------------------------- /Screenshots/New Tab - Google Chrome 03-12-2019 19_15_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/Screenshots/New Tab - Google Chrome 03-12-2019 19_15_47.png -------------------------------------------------------------------------------- /Screenshots/New Tab - Google Chrome 03-12-2019 19_16_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/Screenshots/New Tab - Google Chrome 03-12-2019 19_16_14.png -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/_config.yml -------------------------------------------------------------------------------- /django_web_app/blog/__init__.py: -------------------------------------------------------------------------------- 1 | #init -------------------------------------------------------------------------------- /django_web_app/blog/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/blog/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/blog/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/blog/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/blog/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/blog/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/blog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/admin.py -------------------------------------------------------------------------------- /django_web_app/blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/apps.py -------------------------------------------------------------------------------- /django_web_app/blog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/migrations/0001_initial.py -------------------------------------------------------------------------------- /django_web_app/blog/migrations/0002_post_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/migrations/0002_post_file.py -------------------------------------------------------------------------------- /django_web_app/blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | #init -------------------------------------------------------------------------------- /django_web_app/blog/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/blog/migrations/__pycache__/0002_post_file.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/migrations/__pycache__/0002_post_file.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/blog/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/models.py -------------------------------------------------------------------------------- /django_web_app/blog/static/blog/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/static/blog/main.css -------------------------------------------------------------------------------- /django_web_app/blog/static/blog/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/static/blog/main.js -------------------------------------------------------------------------------- /django_web_app/blog/templates/blog/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/templates/blog/about.html -------------------------------------------------------------------------------- /django_web_app/blog/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/templates/blog/base.html -------------------------------------------------------------------------------- /django_web_app/blog/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/templates/blog/home.html -------------------------------------------------------------------------------- /django_web_app/blog/templates/blog/post_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/templates/blog/post_confirm_delete.html -------------------------------------------------------------------------------- /django_web_app/blog/templates/blog/post_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/templates/blog/post_detail.html -------------------------------------------------------------------------------- /django_web_app/blog/templates/blog/post_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/templates/blog/post_form.html -------------------------------------------------------------------------------- /django_web_app/blog/templates/blog/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/templates/blog/search.html -------------------------------------------------------------------------------- /django_web_app/blog/templates/blog/user_posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/templates/blog/user_posts.html -------------------------------------------------------------------------------- /django_web_app/blog/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/tests.py -------------------------------------------------------------------------------- /django_web_app/blog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/urls.py -------------------------------------------------------------------------------- /django_web_app/blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/blog/views.py -------------------------------------------------------------------------------- /django_web_app/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/db.sqlite3 -------------------------------------------------------------------------------- /django_web_app/django_web_app/__init__.py: -------------------------------------------------------------------------------- 1 | #init -------------------------------------------------------------------------------- /django_web_app/django_web_app/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/django_web_app/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/django_web_app/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/django_web_app/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/django_web_app/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/django_web_app/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/django_web_app/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/django_web_app/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/django_web_app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/django_web_app/settings.py -------------------------------------------------------------------------------- /django_web_app/django_web_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/django_web_app/urls.py -------------------------------------------------------------------------------- /django_web_app/django_web_app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/django_web_app/wsgi.py -------------------------------------------------------------------------------- /django_web_app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/manage.py -------------------------------------------------------------------------------- /django_web_app/media/Files/Alan_Walker_-_Faded_Were_are_you_now_mp3.pm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/media/Files/Alan_Walker_-_Faded_Were_are_you_now_mp3.pm.mp3 -------------------------------------------------------------------------------- /django_web_app/media/Files/Beautiful.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/media/Files/Beautiful.jpg -------------------------------------------------------------------------------- /django_web_app/media/Files/IMG-20181225-WA0032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/media/Files/IMG-20181225-WA0032.jpg -------------------------------------------------------------------------------- /django_web_app/media/Files/Space_Invaders_02-03-2019_11_01_19.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/media/Files/Space_Invaders_02-03-2019_11_01_19.mp4 -------------------------------------------------------------------------------- /django_web_app/media/Files/Space_Invaders_31-03-2019_10_11_46.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/media/Files/Space_Invaders_31-03-2019_10_11_46.mp4 -------------------------------------------------------------------------------- /django_web_app/media/Files/canadian_rockies_beauty_wallpaper_g7zor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/media/Files/canadian_rockies_beauty_wallpaper_g7zor.jpg -------------------------------------------------------------------------------- /django_web_app/media/Files/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/media/Files/main.py -------------------------------------------------------------------------------- /django_web_app/media/Files/project_problem_statement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/media/Files/project_problem_statement.pdf -------------------------------------------------------------------------------- /django_web_app/media/Files/space.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/media/Files/space.wav -------------------------------------------------------------------------------- /django_web_app/media/Files/speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/media/Files/speech.py -------------------------------------------------------------------------------- /django_web_app/media/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/media/default.jpg -------------------------------------------------------------------------------- /django_web_app/media/profile_pics/1535657187-5807300-avatar-images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/media/profile_pics/1535657187-5807300-avatar-images.png -------------------------------------------------------------------------------- /django_web_app/media/profile_pics/newuser_USxz6fs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/media/profile_pics/newuser_USxz6fs.png -------------------------------------------------------------------------------- /django_web_app/media/profile_pics/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/media/profile_pics/profile.jpg -------------------------------------------------------------------------------- /django_web_app/media/profile_pics/profile_IVTEnjH.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/media/profile_pics/profile_IVTEnjH.jpg -------------------------------------------------------------------------------- /django_web_app/users/__init__.py: -------------------------------------------------------------------------------- 1 | #init -------------------------------------------------------------------------------- /django_web_app/users/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/users/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/users/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/users/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/users/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/users/__pycache__/signals.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/__pycache__/signals.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/users/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/admin.py -------------------------------------------------------------------------------- /django_web_app/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/apps.py -------------------------------------------------------------------------------- /django_web_app/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/forms.py -------------------------------------------------------------------------------- /django_web_app/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /django_web_app/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | #init -------------------------------------------------------------------------------- /django_web_app/users/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/users/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /django_web_app/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/models.py -------------------------------------------------------------------------------- /django_web_app/users/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/signals.py -------------------------------------------------------------------------------- /django_web_app/users/templates/users/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/templates/users/login.html -------------------------------------------------------------------------------- /django_web_app/users/templates/users/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/templates/users/logout.html -------------------------------------------------------------------------------- /django_web_app/users/templates/users/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/templates/users/profile.html -------------------------------------------------------------------------------- /django_web_app/users/templates/users/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/templates/users/register.html -------------------------------------------------------------------------------- /django_web_app/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/tests.py -------------------------------------------------------------------------------- /django_web_app/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smahesh29/Django-WebApp/HEAD/django_web_app/users/views.py --------------------------------------------------------------------------------