├── InstaClone
├── core
│ ├── __init__.py
│ ├── migrations
│ │ ├── __init__.py
│ │ ├── 0004_remove_follow_is_follow.py
│ │ ├── 0005_auto_20210224_1548.py
│ │ ├── 0008_auto_20210227_1657.py
│ │ ├── 0002_auto_20201223_1612.py
│ │ ├── 0006_auto_20210224_1548.py
│ │ ├── 0007_auto_20210224_1549.py
│ │ ├── 0009_savedpost.py
│ │ ├── 0003_auto_20201223_1631.py
│ │ └── 0001_initial.py
│ ├── tests.py
│ ├── apps.py
│ ├── utils.py
│ ├── forms.py
│ ├── admin.py
│ ├── urls.py
│ ├── models.py
│ └── views.py
├── user
│ ├── __init__.py
│ ├── migrations
│ │ ├── __init__.py
│ │ ├── 0005_auto_20201211_1656.py
│ │ ├── 0002_auto_20201201_1649.py
│ │ ├── 0004_auto_20201203_1638.py
│ │ ├── 0006_auto_20210219_1614.py
│ │ ├── 0003_auto_20201203_1638.py
│ │ ├── 0008_auto_20210224_1546.py
│ │ ├── 0007_auto_20210222_1610.py
│ │ └── 0001_initial.py
│ ├── tests.py
│ ├── apps.py
│ ├── urls.py
│ ├── admin.py
│ ├── managers.py
│ ├── forms.py
│ ├── models.py
│ └── views.py
├── authentication
│ ├── __init__.py
│ ├── migrations
│ │ └── __init__.py
│ ├── models.py
│ ├── tests.py
│ ├── admin.py
│ ├── apps.py
│ ├── forms.py
│ ├── urls.py
│ └── views.py
├── insta_clone
│ ├── __init__.py
│ ├── asgi.py
│ ├── wsgi.py
│ ├── urls.py
│ └── settings.py
├── media
│ ├── profile_pictures
│ │ ├── D.png
│ │ └── fresh_logo_circle.png
│ └── post_images
│ │ ├── and_operator.png
│ │ ├── Walrus_operator.png
│ │ ├── host_static_websites.png
│ │ ├── todoapp_playlist_marketing.png
│ │ ├── host_static_websites_I97YUc9.png
│ │ ├── todoapp_playlist_marketing_laAwEhM.png
│ │ └── weather_dashboard_playlist_marketing.png
├── static_files
│ ├── img
│ │ ├── appstore.png
│ │ ├── instalogo.png
│ │ ├── no-posts1.jpg
│ │ ├── no-posts2.jpg
│ │ ├── phone_img.png
│ │ └── playstore.png
│ └── styles
│ │ ├── user
│ │ ├── all_profiles.css
│ │ ├── profile_edit.css
│ │ └── profile.css
│ │ ├── core
│ │ ├── navbar.css
│ │ ├── main.css
│ │ └── post_card.css
│ │ └── authentication
│ │ ├── signup.css
│ │ ├── password_reset.css
│ │ ├── signin.css
│ │ ├── password_change.css
│ │ └── main.css
├── templates
│ ├── authentication
│ │ ├── password_reset_email.html
│ │ ├── components
│ │ │ └── no_login_navbar.html
│ │ ├── password_change_done.html
│ │ ├── base.html
│ │ ├── password_reset_done.html
│ │ ├── password_reset_complete.html
│ │ ├── password_change.html
│ │ ├── password_reset.html
│ │ ├── password_reset_confirm.html
│ │ ├── signin.html
│ │ └── signup.html
│ ├── core
│ │ ├── post_detail.html
│ │ ├── base.html
│ │ ├── posts_explore.html
│ │ ├── liked_posts.html
│ │ ├── saved_posts.html
│ │ └── feed.html
│ ├── components
│ │ ├── post_card.html
│ │ ├── navbar.html
│ │ └── post_detail_card.html
│ └── user
│ │ ├── all_profiles.html
│ │ ├── profile_edit.html
│ │ ├── anonymous_profile.html
│ │ └── authenticated_profile.html
└── manage.py
├── ToDoApp
├── mytodo
│ ├── __init__.py
│ ├── migrations
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-38.pyc
│ │ │ ├── 0001_initial.cpython-38.pyc
│ │ │ ├── 0002_auto_20201120_1628.cpython-38.pyc
│ │ │ └── 0003_auto_20201128_1440.cpython-38.pyc
│ │ ├── 0003_auto_20201128_1440.py
│ │ ├── 0001_initial.py
│ │ └── 0002_auto_20201120_1628.py
│ ├── tests.py
│ ├── static
│ │ └── styles.css
│ ├── apps.py
│ ├── __pycache__
│ │ ├── admin.cpython-38.pyc
│ │ ├── forms.cpython-38.pyc
│ │ ├── urls.cpython-38.pyc
│ │ ├── views.cpython-38.pyc
│ │ ├── models.cpython-38.pyc
│ │ └── __init__.cpython-38.pyc
│ ├── admin.py
│ ├── forms.py
│ ├── models.py
│ ├── templates
│ │ ├── components
│ │ │ └── footer.html
│ │ ├── edit.html
│ │ ├── base.html
│ │ └── home.html
│ ├── urls.py
│ └── views.py
├── todo
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── urls.cpython-38.pyc
│ │ ├── wsgi.cpython-38.pyc
│ │ ├── __init__.cpython-38.pyc
│ │ └── settings.cpython-38.pyc
│ ├── urls.py
│ ├── asgi.py
│ ├── wsgi.py
│ └── settings.py
├── requirements.txt
└── manage.py
├── WeatherDashboard
├── dashboard
│ ├── __init__.py
│ ├── migrations
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-38.pyc
│ │ │ └── 0001_initial.cpython-38.pyc
│ │ └── 0001_initial.py
│ ├── tests.py
│ ├── apps.py
│ ├── static
│ │ ├── weather-cloud.jpg
│ │ └── styles.css
│ ├── admin.py
│ ├── __pycache__
│ │ ├── admin.cpython-38.pyc
│ │ ├── forms.cpython-38.pyc
│ │ ├── views.cpython-38.pyc
│ │ ├── __init__.cpython-38.pyc
│ │ ├── helper.cpython-38.pyc
│ │ └── models.cpython-38.pyc
│ ├── templates
│ │ ├── components
│ │ │ ├── footer.html
│ │ │ ├── sideform.html
│ │ │ └── card.html
│ │ ├── history.html
│ │ ├── home.html
│ │ └── base.html
│ ├── models.py
│ ├── forms.py
│ ├── helper.py
│ └── views.py
├── WeatherDashboard
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── urls.cpython-38.pyc
│ │ ├── wsgi.cpython-38.pyc
│ │ ├── __init__.cpython-38.pyc
│ │ └── settings.cpython-38.pyc
│ ├── asgi.py
│ ├── wsgi.py
│ ├── urls.py
│ └── settings.py
├── requirements.txt
└── manage.py
└── .gitignore
/InstaClone/core/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/InstaClone/user/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ToDoApp/mytodo/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ToDoApp/todo/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/InstaClone/authentication/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/InstaClone/core/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/InstaClone/insta_clone/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/InstaClone/user/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ToDoApp/mytodo/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/InstaClone/authentication/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/WeatherDashboard/WeatherDashboard/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/InstaClone/core/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/InstaClone/user/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/ToDoApp/mytodo/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/InstaClone/authentication/models.py:
--------------------------------------------------------------------------------
1 | from django.db import models
2 |
3 | # Create your models here.
4 |
--------------------------------------------------------------------------------
/InstaClone/authentication/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/InstaClone/authentication/admin.py:
--------------------------------------------------------------------------------
1 | from django.contrib import admin
2 |
3 | # Register your models here.
4 |
--------------------------------------------------------------------------------
/ToDoApp/mytodo/static/styles.css:
--------------------------------------------------------------------------------
1 | footer{
2 | position: fixed;
3 | bottom: 0;
4 | width: 100%;
5 | }
--------------------------------------------------------------------------------
/InstaClone/core/apps.py:
--------------------------------------------------------------------------------
1 | from django.apps import AppConfig
2 |
3 |
4 | class CoreConfig(AppConfig):
5 | name = 'core'
6 |
--------------------------------------------------------------------------------
/InstaClone/user/apps.py:
--------------------------------------------------------------------------------
1 | from django.apps import AppConfig
2 |
3 |
4 | class UserConfig(AppConfig):
5 | name = 'user'
6 |
--------------------------------------------------------------------------------
/ToDoApp/mytodo/apps.py:
--------------------------------------------------------------------------------
1 | from django.apps import AppConfig
2 |
3 |
4 | class MytodoConfig(AppConfig):
5 | name = 'mytodo'
6 |
--------------------------------------------------------------------------------
/InstaClone/media/profile_pictures/D.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/InstaClone/media/profile_pictures/D.png
--------------------------------------------------------------------------------
/InstaClone/static_files/img/appstore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/InstaClone/static_files/img/appstore.png
--------------------------------------------------------------------------------
/InstaClone/static_files/img/instalogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/InstaClone/static_files/img/instalogo.png
--------------------------------------------------------------------------------
/InstaClone/static_files/img/no-posts1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/InstaClone/static_files/img/no-posts1.jpg
--------------------------------------------------------------------------------
/InstaClone/static_files/img/no-posts2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/InstaClone/static_files/img/no-posts2.jpg
--------------------------------------------------------------------------------
/InstaClone/static_files/img/phone_img.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/InstaClone/static_files/img/phone_img.png
--------------------------------------------------------------------------------
/InstaClone/static_files/img/playstore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/InstaClone/static_files/img/playstore.png
--------------------------------------------------------------------------------
/ToDoApp/todo/__pycache__/urls.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/ToDoApp/todo/__pycache__/urls.cpython-38.pyc
--------------------------------------------------------------------------------
/ToDoApp/todo/__pycache__/wsgi.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/ToDoApp/todo/__pycache__/wsgi.cpython-38.pyc
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/apps.py:
--------------------------------------------------------------------------------
1 | from django.apps import AppConfig
2 |
3 |
4 | class DashboardConfig(AppConfig):
5 | name = 'dashboard'
6 |
--------------------------------------------------------------------------------
/InstaClone/media/post_images/and_operator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/InstaClone/media/post_images/and_operator.png
--------------------------------------------------------------------------------
/ToDoApp/mytodo/__pycache__/admin.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/ToDoApp/mytodo/__pycache__/admin.cpython-38.pyc
--------------------------------------------------------------------------------
/ToDoApp/mytodo/__pycache__/forms.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/ToDoApp/mytodo/__pycache__/forms.cpython-38.pyc
--------------------------------------------------------------------------------
/ToDoApp/mytodo/__pycache__/urls.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/ToDoApp/mytodo/__pycache__/urls.cpython-38.pyc
--------------------------------------------------------------------------------
/ToDoApp/mytodo/__pycache__/views.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/ToDoApp/mytodo/__pycache__/views.cpython-38.pyc
--------------------------------------------------------------------------------
/InstaClone/authentication/apps.py:
--------------------------------------------------------------------------------
1 | from django.apps import AppConfig
2 |
3 |
4 | class AuthenticationConfig(AppConfig):
5 | name = 'authentication'
6 |
--------------------------------------------------------------------------------
/InstaClone/media/post_images/Walrus_operator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/InstaClone/media/post_images/Walrus_operator.png
--------------------------------------------------------------------------------
/ToDoApp/mytodo/__pycache__/models.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/ToDoApp/mytodo/__pycache__/models.cpython-38.pyc
--------------------------------------------------------------------------------
/ToDoApp/mytodo/admin.py:
--------------------------------------------------------------------------------
1 | from django.contrib import admin
2 | from mytodo.models import ToDo
3 |
4 | # Register your models here.
5 | admin.site.register(ToDo)
--------------------------------------------------------------------------------
/ToDoApp/todo/__pycache__/__init__.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/ToDoApp/todo/__pycache__/__init__.cpython-38.pyc
--------------------------------------------------------------------------------
/ToDoApp/todo/__pycache__/settings.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/ToDoApp/todo/__pycache__/settings.cpython-38.pyc
--------------------------------------------------------------------------------
/ToDoApp/mytodo/__pycache__/__init__.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/ToDoApp/mytodo/__pycache__/__init__.cpython-38.pyc
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/static/weather-cloud.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/WeatherDashboard/dashboard/static/weather-cloud.jpg
--------------------------------------------------------------------------------
/InstaClone/media/post_images/host_static_websites.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/InstaClone/media/post_images/host_static_websites.png
--------------------------------------------------------------------------------
/InstaClone/static_files/styles/user/all_profiles.css:
--------------------------------------------------------------------------------
1 | .profile__pic{
2 | height: 40px;
3 | width: 40px;
4 | object-fit: cover;
5 | overflow: hidden;
6 | }
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/admin.py:
--------------------------------------------------------------------------------
1 | from django.contrib import admin
2 | from dashboard.models import City
3 | # Register your models here.
4 | admin.site.register(City)
--------------------------------------------------------------------------------
/InstaClone/media/profile_pictures/fresh_logo_circle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/InstaClone/media/profile_pictures/fresh_logo_circle.png
--------------------------------------------------------------------------------
/InstaClone/media/post_images/todoapp_playlist_marketing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/InstaClone/media/post_images/todoapp_playlist_marketing.png
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/__pycache__/admin.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/WeatherDashboard/dashboard/__pycache__/admin.cpython-38.pyc
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/__pycache__/forms.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/WeatherDashboard/dashboard/__pycache__/forms.cpython-38.pyc
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/__pycache__/views.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/WeatherDashboard/dashboard/__pycache__/views.cpython-38.pyc
--------------------------------------------------------------------------------
/InstaClone/media/post_images/host_static_websites_I97YUc9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/InstaClone/media/post_images/host_static_websites_I97YUc9.png
--------------------------------------------------------------------------------
/ToDoApp/mytodo/migrations/__pycache__/__init__.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/ToDoApp/mytodo/migrations/__pycache__/__init__.cpython-38.pyc
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/__pycache__/__init__.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/WeatherDashboard/dashboard/__pycache__/__init__.cpython-38.pyc
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/__pycache__/helper.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/WeatherDashboard/dashboard/__pycache__/helper.cpython-38.pyc
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/__pycache__/models.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/WeatherDashboard/dashboard/__pycache__/models.cpython-38.pyc
--------------------------------------------------------------------------------
/InstaClone/media/post_images/todoapp_playlist_marketing_laAwEhM.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/InstaClone/media/post_images/todoapp_playlist_marketing_laAwEhM.png
--------------------------------------------------------------------------------
/ToDoApp/mytodo/migrations/__pycache__/0001_initial.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/ToDoApp/mytodo/migrations/__pycache__/0001_initial.cpython-38.pyc
--------------------------------------------------------------------------------
/WeatherDashboard/WeatherDashboard/__pycache__/urls.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/WeatherDashboard/WeatherDashboard/__pycache__/urls.cpython-38.pyc
--------------------------------------------------------------------------------
/WeatherDashboard/WeatherDashboard/__pycache__/wsgi.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/WeatherDashboard/WeatherDashboard/__pycache__/wsgi.cpython-38.pyc
--------------------------------------------------------------------------------
/InstaClone/media/post_images/weather_dashboard_playlist_marketing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/InstaClone/media/post_images/weather_dashboard_playlist_marketing.png
--------------------------------------------------------------------------------
/WeatherDashboard/WeatherDashboard/__pycache__/__init__.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/WeatherDashboard/WeatherDashboard/__pycache__/__init__.cpython-38.pyc
--------------------------------------------------------------------------------
/WeatherDashboard/WeatherDashboard/__pycache__/settings.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/WeatherDashboard/WeatherDashboard/__pycache__/settings.cpython-38.pyc
--------------------------------------------------------------------------------
/ToDoApp/todo/urls.py:
--------------------------------------------------------------------------------
1 | from django.urls import path, include
2 | from django.contrib import admin
3 |
4 | urlpatterns = [
5 | path('admin/', admin.site.urls),
6 | path('', include('mytodo.urls')),
7 | ]
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/migrations/__pycache__/__init__.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/WeatherDashboard/dashboard/migrations/__pycache__/__init__.cpython-38.pyc
--------------------------------------------------------------------------------
/InstaClone/static_files/styles/user/profile_edit.css:
--------------------------------------------------------------------------------
1 | .profile__edit__card{
2 | background-color: rgba(var(--d87,255,255,255),1);
3 | max-width: 935px;
4 | overflow: hidden;
5 | width: 100%;
6 | }
--------------------------------------------------------------------------------
/ToDoApp/mytodo/migrations/__pycache__/0002_auto_20201120_1628.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/ToDoApp/mytodo/migrations/__pycache__/0002_auto_20201120_1628.cpython-38.pyc
--------------------------------------------------------------------------------
/ToDoApp/mytodo/migrations/__pycache__/0003_auto_20201128_1440.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/ToDoApp/mytodo/migrations/__pycache__/0003_auto_20201128_1440.cpython-38.pyc
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/migrations/__pycache__/0001_initial.cpython-38.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mnamegaurav/easy_django/HEAD/WeatherDashboard/dashboard/migrations/__pycache__/0001_initial.cpython-38.pyc
--------------------------------------------------------------------------------
/InstaClone/templates/authentication/password_reset_email.html:
--------------------------------------------------------------------------------
1 | Devjunction is trying to steal your pasword- {{ email }}. Follow the link below:
2 | {{ protocol}}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}
--------------------------------------------------------------------------------
/ToDoApp/requirements.txt:
--------------------------------------------------------------------------------
1 | asgiref==3.3.1
2 | certifi==2020.11.8
3 | chardet==3.0.4
4 | Django==3.1.3
5 | gunicorn==20.0.4
6 | idna==2.10
7 | pytz==2020.4
8 | requests==2.25.0
9 | sqlparse==0.4.1
10 | urllib3==1.26.2
11 | whitenoise==5.2.0
12 |
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/templates/components/footer.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/WeatherDashboard/requirements.txt:
--------------------------------------------------------------------------------
1 | asgiref==3.3.1
2 | certifi==2020.11.8
3 | chardet==3.0.4
4 | Django==3.1.3
5 | gunicorn==20.0.4
6 | idna==2.10
7 | psycopg2==2.8.6
8 | pytz==2020.4
9 | requests==2.25.0
10 | sqlparse==0.4.1
11 | urllib3==1.26.2
12 | whitenoise==5.2.0
13 |
--------------------------------------------------------------------------------
/ToDoApp/mytodo/forms.py:
--------------------------------------------------------------------------------
1 | from django import forms
2 |
3 | class ToDoForm(forms.Form):
4 | todo_text = forms.CharField(widget=forms.TextInput(attrs={
5 | 'class': 'form-control',
6 | 'placeholder':'Add Your Todo!'}))
--------------------------------------------------------------------------------
/InstaClone/core/utils.py:
--------------------------------------------------------------------------------
1 | from crum import get_current_user
2 |
3 |
4 | # to save currently logged in user by model itself
5 | def auto_save_current_user(obj):
6 | user = get_current_user()
7 | if user and not user.pk:
8 | user = None
9 | if not obj.pk:
10 | obj.user = user
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/models.py:
--------------------------------------------------------------------------------
1 | from django.db import models
2 |
3 | # Create your models here.
4 | class City(models.Model):
5 | city_name = models.CharField(max_length=50)
6 | date_added = models.DateTimeField(auto_now_add=True)
7 |
8 | def __str__(self):
9 | return self.city_name
--------------------------------------------------------------------------------
/WeatherDashboard/dashboard/forms.py:
--------------------------------------------------------------------------------
1 | from django import forms
2 | from dashboard.models import City
3 |
4 | class CityForm(forms.ModelForm):
5 |
6 | class Meta:
7 | model = City
8 | fields = ('city_name',)
9 | widgets = {
10 | 'city_name': forms.TextInput(attrs={'class': 'form-control my-3 city-input w-75 mx-auto','placeholder':'City name!'})
11 | }
--------------------------------------------------------------------------------
/InstaClone/static_files/styles/core/navbar.css:
--------------------------------------------------------------------------------
1 | #user__avatar img{
2 | height: 26px;
3 | width: 26px;
4 | }
5 |
6 | .navbar-nav .dropdown-menu {
7 | position: absolute !important;
8 | }
9 |
10 | .nav__icons{
11 | font-size: 24px;
12 | }
13 |
14 | .signout__btn{
15 | border: none;
16 | background: none;
17 | cursor: pointer;
18 | padding: 0;
19 | text-decoration: none;
20 | }
--------------------------------------------------------------------------------
/InstaClone/templates/authentication/components/no_login_navbar.html:
--------------------------------------------------------------------------------
1 | {% load static %}
2 |
3 |
What is Weather Like ?
3 |Congratulations, your password has been successfully changed. 17 | Go Back to Profile 18 |
19 | 20 | 21 |
11 | {% endif %}
12 |
13 |
14 |
15 |
16 |
17 | {{ post.user.username }}
18 |
19 |
20 |
21 | {{ post.text }}
43 |
18 | OR
25 |
18 | OR
29 |
26 | {% endif %}
27 |
28 |
29 | {{ user.full_name }}
33 | 34 |No Results to display
49 | 50 | {% endif %} 51 ||
30 | {{ todo.todo_text }} 31 |Added On:{{ todo.added_on }} 32 | 33 | 34 | {% if todo.added_on != todo.updated_on %} 35 |Updated On:{{ todo.updated_on }} 36 | {% endif %} 37 | |
38 | 39 | 43 | | 44 |45 | EDIT 46 | | 47 |
Change Password
15 |
26 | OR
44 |Edit Profile
24 |
34 | {% endif %}
35 |
36 |
37 |
38 |
59 |
60 |
61 | |
7 |
8 |
11 | {{ weather_data.temp }}° C9 |{{ weather_data.temp_min }}°C - {{ weather_data.temp_max }}°C 10 | |
12 |
13 |
14 |
16 | {{ weather_data.city_name }}({{ weather_data.country }}) 15 |
17 |
18 | Lattitude:
19 | {{ weather_data.lat }}
20 |
21 |
22 |
23 |
24 | Longitude:
25 | {{ weather_data.lon }}
26 |
27 |
28 | |
29 |
|
38 | 39 | Weather: {{ weather_data.weather }} 40 | {{ weather_data.weather_desc }} 41 | 42 | |
43 |
|
46 | 47 | Pressure: {{ weather_data.pressure }} 48 | hPa 49 | 50 | |
51 |
|
54 | 55 | Humidity: {{ weather_data.humidity }} % 56 | 57 | |
58 |
|
61 | 62 | Wind Speed: {{ weather_data.wind_speed }} 63 | m/s 64 | 65 | |
66 |
18 | OR
54 |
15 |
20 | OR
44 |Don't have an account? Sign up
55 |Get the app.
58 |
61 |
64 |
16 | Sign up to see photos and videos from your friends.
18 |OR
23 |By signing up, you agree to our Terms , Data Policy and Cookies Policy .
70 |Have an account? Sign in
74 |
20 | {% endif %}
21 |
22 |
23 |
24 |
25 |
26 | {{ post.user.username }}
27 |
28 |
29 | {{ post.text }}
91 |
110 | {% endif %}
111 |
112 |
113 | 115 | {{ comment.user.full_name }} 116 |
117 |124 | {{ comment.text }} 125 |
126 | 127 |