├── README.md ├── db.sqlite3 ├── images ├── landing.PNG ├── login.PNG ├── student.PNG └── teacher.PNG ├── ipproject ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── wsgi.cpython-36.pyc ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── media └── documents │ ├── Desert.jpg │ ├── Lighthouse.jpg │ ├── Tulips.jpg │ ├── bg7.jpg │ ├── bg7_1MgqEjT.jpg │ ├── bg7_WG97JTn.jpg │ └── bg7_ZIx2kJX.jpg └── portal ├── __pycache__ ├── __init__.cpython-36.pyc ├── admin.cpython-36.pyc ├── forms.cpython-36.pyc ├── models.cpython-36.pyc ├── tokens.cpython-36.pyc ├── urls.cpython-36.pyc └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py ├── 0002_auto_20181023_2157.py ├── 0003_auto_20181026_0047.py ├── 0004_auto_20181026_0222.py ├── 0005_auto_20181026_0257.py ├── 0006_auto_20181026_0950.py ├── 0007_auto_20181027_1644.py ├── 0008_auto_20181027_1708.py └── __pycache__ │ ├── 0001_initial.cpython-36.pyc │ ├── 0002_auto_20181023_2152.cpython-36.pyc │ ├── 0002_auto_20181023_2157.cpython-36.pyc │ ├── 0003_auto_20181026_0047.cpython-36.pyc │ ├── 0004_auto_20181026_0222.cpython-36.pyc │ ├── 0005_auto_20181026_0257.cpython-36.pyc │ ├── 0006_auto_20181026_0950.cpython-36.pyc │ ├── 0007_auto_20181027_1644.cpython-36.pyc │ ├── 0008_auto_20181027_1708.cpython-36.pyc │ └── __init__.cpython-36.pyc ├── models.py ├── static ├── bg3.jpg ├── bg7.jpg ├── check.gif ├── city-profile.jpg ├── css │ ├── material-kit.css │ ├── material-kit.css.map │ └── material-kit.min.css ├── demo │ └── demo.css ├── js │ ├── bootstrap-datetimepicker.js │ ├── bootstrap-material-design.min.js │ ├── jquery.min.js │ ├── jquery.sharrre.js │ ├── material-kit.js │ ├── material-kit.js.map │ ├── material-kit.min.js │ ├── moment.min.js │ ├── nouislider.min.js │ └── popper.min.js ├── marc.jpg ├── reg.gif └── reg2.gif ├── templates └── portal │ ├── acc_active_email.html │ ├── confirm_reg.html │ ├── edit_profile.html │ ├── inactiv_account.html │ ├── landing_page.html │ ├── login.html │ ├── registered.html │ ├── student_dashboard.html │ ├── student_proctorform.html │ ├── student_signup.html │ ├── student_updateform.html │ ├── teacher_dashboard.html │ ├── teacher_signup.html │ ├── teacher_viewform.html │ └── teacher_viewproctor.html ├── tests.py ├── tokens.py ├── urls.py └── views.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/README.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /images/landing.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/images/landing.PNG -------------------------------------------------------------------------------- /images/login.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/images/login.PNG -------------------------------------------------------------------------------- /images/student.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/images/student.PNG -------------------------------------------------------------------------------- /images/teacher.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/images/teacher.PNG -------------------------------------------------------------------------------- /ipproject/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/ipproject/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ipproject/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/ipproject/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /ipproject/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/ipproject/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /ipproject/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/ipproject/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /ipproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/ipproject/settings.py -------------------------------------------------------------------------------- /ipproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/ipproject/urls.py -------------------------------------------------------------------------------- /ipproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/ipproject/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/manage.py -------------------------------------------------------------------------------- /media/documents/Desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/media/documents/Desert.jpg -------------------------------------------------------------------------------- /media/documents/Lighthouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/media/documents/Lighthouse.jpg -------------------------------------------------------------------------------- /media/documents/Tulips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/media/documents/Tulips.jpg -------------------------------------------------------------------------------- /media/documents/bg7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/media/documents/bg7.jpg -------------------------------------------------------------------------------- /media/documents/bg7_1MgqEjT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/media/documents/bg7_1MgqEjT.jpg -------------------------------------------------------------------------------- /media/documents/bg7_WG97JTn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/media/documents/bg7_WG97JTn.jpg -------------------------------------------------------------------------------- /media/documents/bg7_ZIx2kJX.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/media/documents/bg7_ZIx2kJX.jpg -------------------------------------------------------------------------------- /portal/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /portal/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /portal/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /portal/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /portal/__pycache__/tokens.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/__pycache__/tokens.cpython-36.pyc -------------------------------------------------------------------------------- /portal/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /portal/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /portal/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/admin.py -------------------------------------------------------------------------------- /portal/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/apps.py -------------------------------------------------------------------------------- /portal/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/forms.py -------------------------------------------------------------------------------- /portal/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/0001_initial.py -------------------------------------------------------------------------------- /portal/migrations/0002_auto_20181023_2157.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/0002_auto_20181023_2157.py -------------------------------------------------------------------------------- /portal/migrations/0003_auto_20181026_0047.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/0003_auto_20181026_0047.py -------------------------------------------------------------------------------- /portal/migrations/0004_auto_20181026_0222.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/0004_auto_20181026_0222.py -------------------------------------------------------------------------------- /portal/migrations/0005_auto_20181026_0257.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/0005_auto_20181026_0257.py -------------------------------------------------------------------------------- /portal/migrations/0006_auto_20181026_0950.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/0006_auto_20181026_0950.py -------------------------------------------------------------------------------- /portal/migrations/0007_auto_20181027_1644.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/0007_auto_20181027_1644.py -------------------------------------------------------------------------------- /portal/migrations/0008_auto_20181027_1708.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/0008_auto_20181027_1708.py -------------------------------------------------------------------------------- /portal/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /portal/migrations/__pycache__/0002_auto_20181023_2152.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/__pycache__/0002_auto_20181023_2152.cpython-36.pyc -------------------------------------------------------------------------------- /portal/migrations/__pycache__/0002_auto_20181023_2157.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/__pycache__/0002_auto_20181023_2157.cpython-36.pyc -------------------------------------------------------------------------------- /portal/migrations/__pycache__/0003_auto_20181026_0047.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/__pycache__/0003_auto_20181026_0047.cpython-36.pyc -------------------------------------------------------------------------------- /portal/migrations/__pycache__/0004_auto_20181026_0222.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/__pycache__/0004_auto_20181026_0222.cpython-36.pyc -------------------------------------------------------------------------------- /portal/migrations/__pycache__/0005_auto_20181026_0257.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/__pycache__/0005_auto_20181026_0257.cpython-36.pyc -------------------------------------------------------------------------------- /portal/migrations/__pycache__/0006_auto_20181026_0950.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/__pycache__/0006_auto_20181026_0950.cpython-36.pyc -------------------------------------------------------------------------------- /portal/migrations/__pycache__/0007_auto_20181027_1644.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/__pycache__/0007_auto_20181027_1644.cpython-36.pyc -------------------------------------------------------------------------------- /portal/migrations/__pycache__/0008_auto_20181027_1708.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/__pycache__/0008_auto_20181027_1708.cpython-36.pyc -------------------------------------------------------------------------------- /portal/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /portal/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/models.py -------------------------------------------------------------------------------- /portal/static/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/bg3.jpg -------------------------------------------------------------------------------- /portal/static/bg7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/bg7.jpg -------------------------------------------------------------------------------- /portal/static/check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/check.gif -------------------------------------------------------------------------------- /portal/static/city-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/city-profile.jpg -------------------------------------------------------------------------------- /portal/static/css/material-kit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/css/material-kit.css -------------------------------------------------------------------------------- /portal/static/css/material-kit.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/css/material-kit.css.map -------------------------------------------------------------------------------- /portal/static/css/material-kit.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/css/material-kit.min.css -------------------------------------------------------------------------------- /portal/static/demo/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/demo/demo.css -------------------------------------------------------------------------------- /portal/static/js/bootstrap-datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/js/bootstrap-datetimepicker.js -------------------------------------------------------------------------------- /portal/static/js/bootstrap-material-design.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/js/bootstrap-material-design.min.js -------------------------------------------------------------------------------- /portal/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/js/jquery.min.js -------------------------------------------------------------------------------- /portal/static/js/jquery.sharrre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/js/jquery.sharrre.js -------------------------------------------------------------------------------- /portal/static/js/material-kit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/js/material-kit.js -------------------------------------------------------------------------------- /portal/static/js/material-kit.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/js/material-kit.js.map -------------------------------------------------------------------------------- /portal/static/js/material-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/js/material-kit.min.js -------------------------------------------------------------------------------- /portal/static/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/js/moment.min.js -------------------------------------------------------------------------------- /portal/static/js/nouislider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/js/nouislider.min.js -------------------------------------------------------------------------------- /portal/static/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/js/popper.min.js -------------------------------------------------------------------------------- /portal/static/marc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/marc.jpg -------------------------------------------------------------------------------- /portal/static/reg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/reg.gif -------------------------------------------------------------------------------- /portal/static/reg2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/static/reg2.gif -------------------------------------------------------------------------------- /portal/templates/portal/acc_active_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/templates/portal/acc_active_email.html -------------------------------------------------------------------------------- /portal/templates/portal/confirm_reg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/templates/portal/confirm_reg.html -------------------------------------------------------------------------------- /portal/templates/portal/edit_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/templates/portal/edit_profile.html -------------------------------------------------------------------------------- /portal/templates/portal/inactiv_account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/templates/portal/inactiv_account.html -------------------------------------------------------------------------------- /portal/templates/portal/landing_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/templates/portal/landing_page.html -------------------------------------------------------------------------------- /portal/templates/portal/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/templates/portal/login.html -------------------------------------------------------------------------------- /portal/templates/portal/registered.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/templates/portal/registered.html -------------------------------------------------------------------------------- /portal/templates/portal/student_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/templates/portal/student_dashboard.html -------------------------------------------------------------------------------- /portal/templates/portal/student_proctorform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/templates/portal/student_proctorform.html -------------------------------------------------------------------------------- /portal/templates/portal/student_signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/templates/portal/student_signup.html -------------------------------------------------------------------------------- /portal/templates/portal/student_updateform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/templates/portal/student_updateform.html -------------------------------------------------------------------------------- /portal/templates/portal/teacher_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/templates/portal/teacher_dashboard.html -------------------------------------------------------------------------------- /portal/templates/portal/teacher_signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/templates/portal/teacher_signup.html -------------------------------------------------------------------------------- /portal/templates/portal/teacher_viewform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/templates/portal/teacher_viewform.html -------------------------------------------------------------------------------- /portal/templates/portal/teacher_viewproctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/templates/portal/teacher_viewproctor.html -------------------------------------------------------------------------------- /portal/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/tests.py -------------------------------------------------------------------------------- /portal/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/tokens.py -------------------------------------------------------------------------------- /portal/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/urls.py -------------------------------------------------------------------------------- /portal/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunal1198/Student-Management-System-Django/HEAD/portal/views.py --------------------------------------------------------------------------------