├── .gitattributes ├── .gitignore ├── .idea ├── lms.iml ├── misc.xml ├── modules.xml └── workspace.xml ├── .vscode └── settings.json ├── LMS2 ├── Account │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── validators.py │ └── views.py ├── LMS │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── Manager │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ ├── validators.py │ └── views.py ├── Student │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ ├── validators.py │ └── views.py ├── Teacher │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ ├── validators.py │ └── views.py ├── __init__.py ├── constants.py ├── mail.py ├── manage.py ├── settings.py ├── static │ ├── CSS │ │ ├── Hero │ │ │ └── Hero.jpg │ │ └── styles.css │ ├── Favicon │ │ ├── favicon-16x16.png │ │ └── favicon-32x32.png │ └── Logo │ │ └── Screenshot_2020-01-28 Logo Maker Used By 2 3 Million Startups(1).jpg ├── suspend.py ├── templates │ ├── Manager │ │ ├── Student Related │ │ │ ├── add_student.html │ │ │ └── students_list.html │ │ ├── Teacher Related │ │ │ ├── add_teacher_form.html │ │ │ └── teachers_list.html │ │ └── dashboard.html │ ├── Student │ │ └── dashboard.html │ ├── Teacher │ │ └── dashboard.html │ ├── home.html │ ├── login.html │ ├── master │ │ ├── base.html │ │ └── side-nav-included.html │ └── signup.html ├── urls.py ├── views.py └── wsgi.py ├── Procfile ├── README.md ├── account ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_account_is_manager.py │ ├── 0003_account_is_active.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── class_ ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20191021_0815.py │ ├── 0003_auto_20191021_0818.py │ ├── 0004_auto_20191021_0834.py │ ├── 0005_classjoined.py │ ├── 0006_classjoined_is_accept.py │ ├── 0007_classjoined_is_suspend.py │ ├── 0008_remove_classjoined_is_suspend.py │ ├── 0009_comment_stream.py │ └── __init__.py ├── models.py ├── templatetags │ ├── extension.py │ └── filename.py ├── tests.py ├── urls.py └── views.py ├── gitImages ├── add_student.png ├── add_teachers.png ├── create_assignments.png ├── create_class.png ├── login.png ├── manager_dashboard.png ├── student_dashboard.png └── teacher_dashboard.png ├── lms ├── __init__.py ├── constants.py ├── mail.py ├── settings.py ├── suspend.py ├── urls.py ├── views.py └── wsgi.py ├── manage.py ├── manager ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_manager_user.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── media └── stream │ ├── Screenshot_1.png │ ├── Screenshot_2.png │ ├── Screenshot_2_1JoT8u0.png │ └── atul_sharma.pdf ├── requirements.txt ├── static ├── css │ ├── dashboard.css │ ├── style.css │ ├── uikit-rtl.css │ ├── uikit-rtl.min.css │ ├── uikit.css │ └── uikit.min.css ├── img │ ├── bg.jpg │ ├── folder.png │ ├── pdf.png │ ├── ppt.jpg │ ├── teacher.png │ └── word.jpg └── js │ ├── bideo.js │ ├── js.js │ ├── uikit-icons.js │ ├── uikit-icons.min.js │ ├── uikit.js │ └── uikit.min.js ├── student ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── teacher ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py └── templates ├── change_password.html ├── class_ ├── class_detail.html └── class_student_request.html ├── includes ├── class_nav.html ├── class_side_bar.html ├── dashboard_sidenav.html └── message.html ├── login.html ├── manager ├── dashboard.html ├── first.html ├── student.html └── teacher.html ├── master ├── dashboard.html ├── full_screen.html ├── student_dashboard.html └── teacher_dashboard.html ├── registration ├── password_reset_confirm.html ├── password_reset_done.html └── password_reset_form.html ├── student ├── dashboard.html ├── search.html └── student_detail.html └── teacher ├── dashboard.html ├── request_student.html └── teacher_detail.html /.gitattributes: -------------------------------------------------------------------------------- 1 | static/* linguist-vendored -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/lms.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/.idea/lms.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LMS2/Account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LMS2/Account/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Account/admin.py -------------------------------------------------------------------------------- /LMS2/Account/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Account/apps.py -------------------------------------------------------------------------------- /LMS2/Account/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Account/migrations/0001_initial.py -------------------------------------------------------------------------------- /LMS2/Account/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LMS2/Account/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Account/models.py -------------------------------------------------------------------------------- /LMS2/Account/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Account/tests.py -------------------------------------------------------------------------------- /LMS2/Account/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Account/validators.py -------------------------------------------------------------------------------- /LMS2/Account/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /LMS2/LMS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LMS2/LMS/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/LMS/asgi.py -------------------------------------------------------------------------------- /LMS2/LMS/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/LMS/settings.py -------------------------------------------------------------------------------- /LMS2/LMS/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/LMS/urls.py -------------------------------------------------------------------------------- /LMS2/LMS/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/LMS/views.py -------------------------------------------------------------------------------- /LMS2/LMS/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/LMS/wsgi.py -------------------------------------------------------------------------------- /LMS2/Manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LMS2/Manager/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Manager/admin.py -------------------------------------------------------------------------------- /LMS2/Manager/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Manager/apps.py -------------------------------------------------------------------------------- /LMS2/Manager/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Manager/forms.py -------------------------------------------------------------------------------- /LMS2/Manager/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Manager/migrations/0001_initial.py -------------------------------------------------------------------------------- /LMS2/Manager/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LMS2/Manager/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Manager/models.py -------------------------------------------------------------------------------- /LMS2/Manager/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Manager/tests.py -------------------------------------------------------------------------------- /LMS2/Manager/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Manager/urls.py -------------------------------------------------------------------------------- /LMS2/Manager/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Manager/utils.py -------------------------------------------------------------------------------- /LMS2/Manager/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Manager/validators.py -------------------------------------------------------------------------------- /LMS2/Manager/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Manager/views.py -------------------------------------------------------------------------------- /LMS2/Student/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LMS2/Student/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Student/admin.py -------------------------------------------------------------------------------- /LMS2/Student/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Student/apps.py -------------------------------------------------------------------------------- /LMS2/Student/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Student/migrations/0001_initial.py -------------------------------------------------------------------------------- /LMS2/Student/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LMS2/Student/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Student/models.py -------------------------------------------------------------------------------- /LMS2/Student/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Student/tests.py -------------------------------------------------------------------------------- /LMS2/Student/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Student/urls.py -------------------------------------------------------------------------------- /LMS2/Student/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Student/validators.py -------------------------------------------------------------------------------- /LMS2/Student/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Student/views.py -------------------------------------------------------------------------------- /LMS2/Teacher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LMS2/Teacher/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Teacher/admin.py -------------------------------------------------------------------------------- /LMS2/Teacher/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Teacher/apps.py -------------------------------------------------------------------------------- /LMS2/Teacher/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Teacher/migrations/0001_initial.py -------------------------------------------------------------------------------- /LMS2/Teacher/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LMS2/Teacher/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Teacher/models.py -------------------------------------------------------------------------------- /LMS2/Teacher/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Teacher/tests.py -------------------------------------------------------------------------------- /LMS2/Teacher/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Teacher/urls.py -------------------------------------------------------------------------------- /LMS2/Teacher/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Teacher/validators.py -------------------------------------------------------------------------------- /LMS2/Teacher/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/Teacher/views.py -------------------------------------------------------------------------------- /LMS2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LMS2/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/constants.py -------------------------------------------------------------------------------- /LMS2/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/mail.py -------------------------------------------------------------------------------- /LMS2/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/manage.py -------------------------------------------------------------------------------- /LMS2/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/settings.py -------------------------------------------------------------------------------- /LMS2/static/CSS/Hero/Hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/static/CSS/Hero/Hero.jpg -------------------------------------------------------------------------------- /LMS2/static/CSS/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/static/CSS/styles.css -------------------------------------------------------------------------------- /LMS2/static/Favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/static/Favicon/favicon-16x16.png -------------------------------------------------------------------------------- /LMS2/static/Favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/static/Favicon/favicon-32x32.png -------------------------------------------------------------------------------- /LMS2/static/Logo/Screenshot_2020-01-28 Logo Maker Used By 2 3 Million Startups(1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/static/Logo/Screenshot_2020-01-28 Logo Maker Used By 2 3 Million Startups(1).jpg -------------------------------------------------------------------------------- /LMS2/suspend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/suspend.py -------------------------------------------------------------------------------- /LMS2/templates/Manager/Student Related/add_student.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/templates/Manager/Student Related/add_student.html -------------------------------------------------------------------------------- /LMS2/templates/Manager/Student Related/students_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/templates/Manager/Student Related/students_list.html -------------------------------------------------------------------------------- /LMS2/templates/Manager/Teacher Related/add_teacher_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/templates/Manager/Teacher Related/add_teacher_form.html -------------------------------------------------------------------------------- /LMS2/templates/Manager/Teacher Related/teachers_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/templates/Manager/Teacher Related/teachers_list.html -------------------------------------------------------------------------------- /LMS2/templates/Manager/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/templates/Manager/dashboard.html -------------------------------------------------------------------------------- /LMS2/templates/Student/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/templates/Student/dashboard.html -------------------------------------------------------------------------------- /LMS2/templates/Teacher/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/templates/Teacher/dashboard.html -------------------------------------------------------------------------------- /LMS2/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/templates/home.html -------------------------------------------------------------------------------- /LMS2/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/templates/login.html -------------------------------------------------------------------------------- /LMS2/templates/master/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/templates/master/base.html -------------------------------------------------------------------------------- /LMS2/templates/master/side-nav-included.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/templates/master/side-nav-included.html -------------------------------------------------------------------------------- /LMS2/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/templates/signup.html -------------------------------------------------------------------------------- /LMS2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/urls.py -------------------------------------------------------------------------------- /LMS2/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/views.py -------------------------------------------------------------------------------- /LMS2/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/LMS2/wsgi.py -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | release: python manage.py migrate 2 | web: gunicorn lms.wsgi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /account/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/account/admin.py -------------------------------------------------------------------------------- /account/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/account/apps.py -------------------------------------------------------------------------------- /account/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/account/migrations/0001_initial.py -------------------------------------------------------------------------------- /account/migrations/0002_account_is_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/account/migrations/0002_account_is_manager.py -------------------------------------------------------------------------------- /account/migrations/0003_account_is_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/account/migrations/0003_account_is_active.py -------------------------------------------------------------------------------- /account/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /account/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/account/models.py -------------------------------------------------------------------------------- /account/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/account/tests.py -------------------------------------------------------------------------------- /account/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | 5 | -------------------------------------------------------------------------------- /class_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /class_/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/admin.py -------------------------------------------------------------------------------- /class_/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/apps.py -------------------------------------------------------------------------------- /class_/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/forms.py -------------------------------------------------------------------------------- /class_/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/migrations/0001_initial.py -------------------------------------------------------------------------------- /class_/migrations/0002_auto_20191021_0815.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/migrations/0002_auto_20191021_0815.py -------------------------------------------------------------------------------- /class_/migrations/0003_auto_20191021_0818.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/migrations/0003_auto_20191021_0818.py -------------------------------------------------------------------------------- /class_/migrations/0004_auto_20191021_0834.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/migrations/0004_auto_20191021_0834.py -------------------------------------------------------------------------------- /class_/migrations/0005_classjoined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/migrations/0005_classjoined.py -------------------------------------------------------------------------------- /class_/migrations/0006_classjoined_is_accept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/migrations/0006_classjoined_is_accept.py -------------------------------------------------------------------------------- /class_/migrations/0007_classjoined_is_suspend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/migrations/0007_classjoined_is_suspend.py -------------------------------------------------------------------------------- /class_/migrations/0008_remove_classjoined_is_suspend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/migrations/0008_remove_classjoined_is_suspend.py -------------------------------------------------------------------------------- /class_/migrations/0009_comment_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/migrations/0009_comment_stream.py -------------------------------------------------------------------------------- /class_/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /class_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/models.py -------------------------------------------------------------------------------- /class_/templatetags/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/templatetags/extension.py -------------------------------------------------------------------------------- /class_/templatetags/filename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/templatetags/filename.py -------------------------------------------------------------------------------- /class_/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/tests.py -------------------------------------------------------------------------------- /class_/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/urls.py -------------------------------------------------------------------------------- /class_/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/class_/views.py -------------------------------------------------------------------------------- /gitImages/add_student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/gitImages/add_student.png -------------------------------------------------------------------------------- /gitImages/add_teachers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/gitImages/add_teachers.png -------------------------------------------------------------------------------- /gitImages/create_assignments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/gitImages/create_assignments.png -------------------------------------------------------------------------------- /gitImages/create_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/gitImages/create_class.png -------------------------------------------------------------------------------- /gitImages/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/gitImages/login.png -------------------------------------------------------------------------------- /gitImages/manager_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/gitImages/manager_dashboard.png -------------------------------------------------------------------------------- /gitImages/student_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/gitImages/student_dashboard.png -------------------------------------------------------------------------------- /gitImages/teacher_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/gitImages/teacher_dashboard.png -------------------------------------------------------------------------------- /lms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lms/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/lms/constants.py -------------------------------------------------------------------------------- /lms/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/lms/mail.py -------------------------------------------------------------------------------- /lms/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/lms/settings.py -------------------------------------------------------------------------------- /lms/suspend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/lms/suspend.py -------------------------------------------------------------------------------- /lms/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/lms/urls.py -------------------------------------------------------------------------------- /lms/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/lms/views.py -------------------------------------------------------------------------------- /lms/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/lms/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/manage.py -------------------------------------------------------------------------------- /manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/manager/admin.py -------------------------------------------------------------------------------- /manager/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/manager/apps.py -------------------------------------------------------------------------------- /manager/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/manager/forms.py -------------------------------------------------------------------------------- /manager/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/manager/migrations/0001_initial.py -------------------------------------------------------------------------------- /manager/migrations/0002_manager_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/manager/migrations/0002_manager_user.py -------------------------------------------------------------------------------- /manager/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/manager/models.py -------------------------------------------------------------------------------- /manager/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/manager/tests.py -------------------------------------------------------------------------------- /manager/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/manager/urls.py -------------------------------------------------------------------------------- /manager/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/manager/views.py -------------------------------------------------------------------------------- /media/stream/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/media/stream/Screenshot_1.png -------------------------------------------------------------------------------- /media/stream/Screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/media/stream/Screenshot_2.png -------------------------------------------------------------------------------- /media/stream/Screenshot_2_1JoT8u0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/media/stream/Screenshot_2_1JoT8u0.png -------------------------------------------------------------------------------- /media/stream/atul_sharma.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/media/stream/atul_sharma.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/css/dashboard.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/css/uikit-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/css/uikit-rtl.css -------------------------------------------------------------------------------- /static/css/uikit-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/css/uikit-rtl.min.css -------------------------------------------------------------------------------- /static/css/uikit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/css/uikit.css -------------------------------------------------------------------------------- /static/css/uikit.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/css/uikit.min.css -------------------------------------------------------------------------------- /static/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/img/bg.jpg -------------------------------------------------------------------------------- /static/img/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/img/folder.png -------------------------------------------------------------------------------- /static/img/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/img/pdf.png -------------------------------------------------------------------------------- /static/img/ppt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/img/ppt.jpg -------------------------------------------------------------------------------- /static/img/teacher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/img/teacher.png -------------------------------------------------------------------------------- /static/img/word.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/img/word.jpg -------------------------------------------------------------------------------- /static/js/bideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/js/bideo.js -------------------------------------------------------------------------------- /static/js/js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/js/js.js -------------------------------------------------------------------------------- /static/js/uikit-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/js/uikit-icons.js -------------------------------------------------------------------------------- /static/js/uikit-icons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/js/uikit-icons.min.js -------------------------------------------------------------------------------- /static/js/uikit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/js/uikit.js -------------------------------------------------------------------------------- /static/js/uikit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/static/js/uikit.min.js -------------------------------------------------------------------------------- /student/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /student/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/student/admin.py -------------------------------------------------------------------------------- /student/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/student/apps.py -------------------------------------------------------------------------------- /student/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/student/migrations/0001_initial.py -------------------------------------------------------------------------------- /student/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /student/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/student/models.py -------------------------------------------------------------------------------- /student/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/student/tests.py -------------------------------------------------------------------------------- /student/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/student/urls.py -------------------------------------------------------------------------------- /student/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/student/views.py -------------------------------------------------------------------------------- /teacher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teacher/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/teacher/admin.py -------------------------------------------------------------------------------- /teacher/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/teacher/apps.py -------------------------------------------------------------------------------- /teacher/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/teacher/migrations/0001_initial.py -------------------------------------------------------------------------------- /teacher/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teacher/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/teacher/models.py -------------------------------------------------------------------------------- /teacher/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/teacher/tests.py -------------------------------------------------------------------------------- /teacher/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/teacher/urls.py -------------------------------------------------------------------------------- /teacher/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/teacher/views.py -------------------------------------------------------------------------------- /templates/change_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/change_password.html -------------------------------------------------------------------------------- /templates/class_/class_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/class_/class_detail.html -------------------------------------------------------------------------------- /templates/class_/class_student_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/class_/class_student_request.html -------------------------------------------------------------------------------- /templates/includes/class_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/includes/class_nav.html -------------------------------------------------------------------------------- /templates/includes/class_side_bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/includes/class_side_bar.html -------------------------------------------------------------------------------- /templates/includes/dashboard_sidenav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/includes/dashboard_sidenav.html -------------------------------------------------------------------------------- /templates/includes/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/includes/message.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/manager/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/manager/dashboard.html -------------------------------------------------------------------------------- /templates/manager/first.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/manager/first.html -------------------------------------------------------------------------------- /templates/manager/student.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/manager/student.html -------------------------------------------------------------------------------- /templates/manager/teacher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/manager/teacher.html -------------------------------------------------------------------------------- /templates/master/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/master/dashboard.html -------------------------------------------------------------------------------- /templates/master/full_screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/master/full_screen.html -------------------------------------------------------------------------------- /templates/master/student_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/master/student_dashboard.html -------------------------------------------------------------------------------- /templates/master/teacher_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/master/teacher_dashboard.html -------------------------------------------------------------------------------- /templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /templates/student/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/student/dashboard.html -------------------------------------------------------------------------------- /templates/student/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/student/search.html -------------------------------------------------------------------------------- /templates/student/student_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/student/student_detail.html -------------------------------------------------------------------------------- /templates/teacher/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/teacher/dashboard.html -------------------------------------------------------------------------------- /templates/teacher/request_student.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/teacher/request_student.html -------------------------------------------------------------------------------- /templates/teacher/teacher_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niraj-khatiwada/Learning-Management-System/HEAD/templates/teacher/teacher_detail.html --------------------------------------------------------------------------------