├── README.md ├── accounts ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── admin.cpython-38.pyc │ ├── forms.cpython-38.pyc │ ├── models.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── views.cpython-38.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200923_0856.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-38.pyc │ │ ├── 0002_auto_20200923_0856.cpython-38.pyc │ │ └── __init__.cpython-38.pyc ├── models.py ├── signals.py ├── tests.py ├── urls.py └── views.py ├── assets ├── css │ └── layout.css └── ss │ ├── a.png │ ├── b.png │ ├── c.png │ ├── d.png │ ├── e.png │ └── f.png ├── courses ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── admin.cpython-38.pyc │ ├── forms.cpython-38.pyc │ ├── models.cpython-38.pyc │ ├── tests.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── views.cpython-38.pyc ├── admin.py ├── apps.py ├── forms.py ├── js │ ├── order.js │ └── vendor │ │ └── jquery.fn.sortable.min.js ├── migrations │ ├── 0001_initial.py │ ├── 0002_step.py │ ├── 0003_auto_20200423_0950.py │ ├── 0004_auto_20200722_0841.py │ ├── 0005_quiz.py │ ├── 0006_auto_20200722_1016.py │ ├── 0007_answer.py │ ├── 0008_multiplechoicequestion.py │ ├── 0009_truefalsequestion.py │ ├── 0010_auto_20200807_1011.py │ ├── 0011_auto_20200922_0831.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-38.pyc │ │ ├── 0002_step.cpython-38.pyc │ │ ├── 0003_auto_20200423_0950.cpython-38.pyc │ │ ├── 0004_auto_20200722_0841.cpython-38.pyc │ │ ├── 0005_quiz.cpython-38.pyc │ │ ├── 0006_auto_20200722_1016.cpython-38.pyc │ │ ├── 0007_answer.cpython-38.pyc │ │ ├── 0008_multiplechoicequestion.cpython-38.pyc │ │ ├── 0009_truefalsequestion.cpython-38.pyc │ │ ├── 0010_auto_20200807_1011.cpython-38.pyc │ │ ├── 0011_auto_20200922_0831.cpython-38.pyc │ │ └── __init__.cpython-38.pyc ├── models.py ├── static │ └── courses │ │ └── css │ │ ├── courses.css │ │ └── order.css ├── templates │ └── courses │ │ ├── answer_form.html │ │ ├── course_detail.html │ │ ├── course_list.html │ │ ├── course_nav.html │ │ ├── question_form.html │ │ ├── quiz_detail.html │ │ ├── quiz_form.html │ │ ├── step_detail.html │ │ └── text_detail.html ├── templatetags │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── course_extras.cpython-38.pyc │ └── course_extras.py ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── learning_site ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── forms.cpython-38.pyc │ ├── settings.cpython-38.pyc │ ├── urls.cpython-38.pyc │ ├── views.cpython-38.pyc │ └── wsgi.cpython-38.pyc ├── asgi.py ├── forms.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py ├── manage.py ├── media ├── default.jpg └── profile_pics │ └── FB_IMG_1563211510479.jpg ├── requirements.txt └── templates ├── home.html ├── layout.html ├── suggestion_form.html └── users ├── login.html ├── profile.html └── register.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/README.md -------------------------------------------------------------------------------- /accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /accounts/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /accounts/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /accounts/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /accounts/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /accounts/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/admin.py -------------------------------------------------------------------------------- /accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/apps.py -------------------------------------------------------------------------------- /accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/forms.py -------------------------------------------------------------------------------- /accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /accounts/migrations/0002_auto_20200923_0856.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/migrations/0002_auto_20200923_0856.py -------------------------------------------------------------------------------- /accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /accounts/migrations/__pycache__/0002_auto_20200923_0856.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/migrations/__pycache__/0002_auto_20200923_0856.cpython-38.pyc -------------------------------------------------------------------------------- /accounts/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/models.py -------------------------------------------------------------------------------- /accounts/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/signals.py -------------------------------------------------------------------------------- /accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/tests.py -------------------------------------------------------------------------------- /accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/urls.py -------------------------------------------------------------------------------- /accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/accounts/views.py -------------------------------------------------------------------------------- /assets/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/assets/css/layout.css -------------------------------------------------------------------------------- /assets/ss/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/assets/ss/a.png -------------------------------------------------------------------------------- /assets/ss/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/assets/ss/b.png -------------------------------------------------------------------------------- /assets/ss/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/assets/ss/c.png -------------------------------------------------------------------------------- /assets/ss/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/assets/ss/d.png -------------------------------------------------------------------------------- /assets/ss/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/assets/ss/e.png -------------------------------------------------------------------------------- /assets/ss/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/assets/ss/f.png -------------------------------------------------------------------------------- /courses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /courses/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /courses/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /courses/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /courses/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /courses/__pycache__/tests.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/__pycache__/tests.cpython-38.pyc -------------------------------------------------------------------------------- /courses/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /courses/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /courses/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/admin.py -------------------------------------------------------------------------------- /courses/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/apps.py -------------------------------------------------------------------------------- /courses/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/forms.py -------------------------------------------------------------------------------- /courses/js/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/js/order.js -------------------------------------------------------------------------------- /courses/js/vendor/jquery.fn.sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/js/vendor/jquery.fn.sortable.min.js -------------------------------------------------------------------------------- /courses/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/0001_initial.py -------------------------------------------------------------------------------- /courses/migrations/0002_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/0002_step.py -------------------------------------------------------------------------------- /courses/migrations/0003_auto_20200423_0950.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/0003_auto_20200423_0950.py -------------------------------------------------------------------------------- /courses/migrations/0004_auto_20200722_0841.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/0004_auto_20200722_0841.py -------------------------------------------------------------------------------- /courses/migrations/0005_quiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/0005_quiz.py -------------------------------------------------------------------------------- /courses/migrations/0006_auto_20200722_1016.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/0006_auto_20200722_1016.py -------------------------------------------------------------------------------- /courses/migrations/0007_answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/0007_answer.py -------------------------------------------------------------------------------- /courses/migrations/0008_multiplechoicequestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/0008_multiplechoicequestion.py -------------------------------------------------------------------------------- /courses/migrations/0009_truefalsequestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/0009_truefalsequestion.py -------------------------------------------------------------------------------- /courses/migrations/0010_auto_20200807_1011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/0010_auto_20200807_1011.py -------------------------------------------------------------------------------- /courses/migrations/0011_auto_20200922_0831.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/0011_auto_20200922_0831.py -------------------------------------------------------------------------------- /courses/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /courses/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /courses/migrations/__pycache__/0002_step.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/__pycache__/0002_step.cpython-38.pyc -------------------------------------------------------------------------------- /courses/migrations/__pycache__/0003_auto_20200423_0950.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/__pycache__/0003_auto_20200423_0950.cpython-38.pyc -------------------------------------------------------------------------------- /courses/migrations/__pycache__/0004_auto_20200722_0841.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/__pycache__/0004_auto_20200722_0841.cpython-38.pyc -------------------------------------------------------------------------------- /courses/migrations/__pycache__/0005_quiz.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/__pycache__/0005_quiz.cpython-38.pyc -------------------------------------------------------------------------------- /courses/migrations/__pycache__/0006_auto_20200722_1016.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/__pycache__/0006_auto_20200722_1016.cpython-38.pyc -------------------------------------------------------------------------------- /courses/migrations/__pycache__/0007_answer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/__pycache__/0007_answer.cpython-38.pyc -------------------------------------------------------------------------------- /courses/migrations/__pycache__/0008_multiplechoicequestion.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/__pycache__/0008_multiplechoicequestion.cpython-38.pyc -------------------------------------------------------------------------------- /courses/migrations/__pycache__/0009_truefalsequestion.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/__pycache__/0009_truefalsequestion.cpython-38.pyc -------------------------------------------------------------------------------- /courses/migrations/__pycache__/0010_auto_20200807_1011.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/__pycache__/0010_auto_20200807_1011.cpython-38.pyc -------------------------------------------------------------------------------- /courses/migrations/__pycache__/0011_auto_20200922_0831.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/__pycache__/0011_auto_20200922_0831.cpython-38.pyc -------------------------------------------------------------------------------- /courses/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /courses/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/models.py -------------------------------------------------------------------------------- /courses/static/courses/css/courses.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/static/courses/css/courses.css -------------------------------------------------------------------------------- /courses/static/courses/css/order.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/static/courses/css/order.css -------------------------------------------------------------------------------- /courses/templates/courses/answer_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/templates/courses/answer_form.html -------------------------------------------------------------------------------- /courses/templates/courses/course_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/templates/courses/course_detail.html -------------------------------------------------------------------------------- /courses/templates/courses/course_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/templates/courses/course_list.html -------------------------------------------------------------------------------- /courses/templates/courses/course_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/templates/courses/course_nav.html -------------------------------------------------------------------------------- /courses/templates/courses/question_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/templates/courses/question_form.html -------------------------------------------------------------------------------- /courses/templates/courses/quiz_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/templates/courses/quiz_detail.html -------------------------------------------------------------------------------- /courses/templates/courses/quiz_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/templates/courses/quiz_form.html -------------------------------------------------------------------------------- /courses/templates/courses/step_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/templates/courses/step_detail.html -------------------------------------------------------------------------------- /courses/templates/courses/text_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/templates/courses/text_detail.html -------------------------------------------------------------------------------- /courses/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /courses/templatetags/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/templatetags/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /courses/templatetags/__pycache__/course_extras.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/templatetags/__pycache__/course_extras.cpython-38.pyc -------------------------------------------------------------------------------- /courses/templatetags/course_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/templatetags/course_extras.py -------------------------------------------------------------------------------- /courses/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/tests.py -------------------------------------------------------------------------------- /courses/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/urls.py -------------------------------------------------------------------------------- /courses/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/courses/views.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /learning_site/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /learning_site/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/learning_site/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /learning_site/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/learning_site/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /learning_site/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/learning_site/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /learning_site/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/learning_site/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /learning_site/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/learning_site/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /learning_site/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/learning_site/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /learning_site/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/learning_site/asgi.py -------------------------------------------------------------------------------- /learning_site/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/learning_site/forms.py -------------------------------------------------------------------------------- /learning_site/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/learning_site/settings.py -------------------------------------------------------------------------------- /learning_site/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/learning_site/urls.py -------------------------------------------------------------------------------- /learning_site/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/learning_site/views.py -------------------------------------------------------------------------------- /learning_site/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/learning_site/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/manage.py -------------------------------------------------------------------------------- /media/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/media/default.jpg -------------------------------------------------------------------------------- /media/profile_pics/FB_IMG_1563211510479.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/media/profile_pics/FB_IMG_1563211510479.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/suggestion_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/templates/suggestion_form.html -------------------------------------------------------------------------------- /templates/users/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/templates/users/login.html -------------------------------------------------------------------------------- /templates/users/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/templates/users/profile.html -------------------------------------------------------------------------------- /templates/users/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamOmaR22/eLearning-Website-with-Django-and-Python/HEAD/templates/users/register.html --------------------------------------------------------------------------------