├── .gitignore ├── .isort.cfg ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── apps ├── __init__.py ├── corecode │ ├── __init__.py │ ├── apps.py │ ├── context_processors.py │ ├── forms.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200506_1520.py │ │ ├── 0003_auto_20200726_0925.py │ │ ├── 0004_auto_20201124_0614.py │ │ └── __init__.py │ ├── models.py │ ├── signals.py │ ├── templates │ │ └── corecode │ │ │ ├── class_list.html │ │ │ ├── core_confirm_delete.html │ │ │ ├── current_session.html │ │ │ ├── form_snippet.html │ │ │ ├── mgt_form.html │ │ │ ├── session_list.html │ │ │ ├── siteconfig.html │ │ │ ├── subject_list.html │ │ │ └── term_list.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── finance │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── signals.py │ ├── templates │ │ └── finance │ │ │ ├── bulk_invoice.html │ │ │ ├── invoice_confirm_delete.html │ │ │ ├── invoice_detail.html │ │ │ ├── invoice_form.html │ │ │ ├── invoice_list.html │ │ │ └── receipt_form.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── result │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── result │ │ │ ├── all_results.html │ │ │ ├── create_result.html │ │ │ ├── create_result_page2.html │ │ │ └── edit_results.html │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── staffs │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20201124_0614.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── staffs │ │ │ ├── staff_confirm_delete.html │ │ │ ├── staff_detail.html │ │ │ ├── staff_form.html │ │ │ └── staff_list.html │ ├── tests.py │ ├── urls.py │ └── views.py └── students │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20201124_0614.py │ └── __init__.py │ ├── models.py │ ├── signals.py │ ├── templates │ └── students │ │ ├── student_confirm_delete.html │ │ ├── student_detail.html │ │ ├── student_form.html │ │ ├── student_list.html │ │ └── students_upload.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py ├── requirements.txt ├── school_app ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── static ├── dist │ ├── css │ │ ├── adminlte.css │ │ ├── adminlte.css.map │ │ ├── adminlte.min.css │ │ ├── adminlte.min.css.map │ │ └── login-page.css │ ├── img │ │ ├── avatar.png │ │ ├── avatar04.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar5.png │ │ ├── credit │ │ │ ├── american-express.png │ │ │ ├── cirrus.png │ │ │ ├── mastercard.png │ │ │ ├── mestro.png │ │ │ ├── paypal.png │ │ │ ├── paypal2.png │ │ │ └── visa.png │ │ ├── login.png │ │ └── logo.png │ └── js │ │ ├── adminlte.js │ │ ├── adminlte.js.map │ │ ├── adminlte.min.js │ │ ├── adminlte.min.js.map │ │ ├── custom.js │ │ ├── demo.js │ │ ├── jquery.formset.js │ │ └── pages │ │ ├── dashboard.js │ │ ├── dashboard2.js │ │ └── dashboard3.js └── plugins │ ├── Datatables │ ├── datatables.css │ ├── datatables.js │ ├── datatables.min.css │ └── datatables.min.js │ ├── bootstrap │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── fontawesome-free │ ├── css │ │ ├── all.css │ │ ├── all.min.css │ │ ├── brands.css │ │ ├── brands.min.css │ │ ├── fontawesome.css │ │ ├── fontawesome.min.css │ │ ├── regular.css │ │ ├── regular.min.css │ │ ├── solid.css │ │ ├── solid.min.css │ │ ├── svg-with-js.css │ │ ├── svg-with-js.min.css │ │ ├── v4-shims.css │ │ └── v4-shims.min.css │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── jquery │ ├── core.js │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.slim.js │ ├── jquery.slim.min.js │ └── jquery.slim.min.map │ ├── overlayScrollbars │ ├── css │ │ ├── OverlayScrollbars.css │ │ └── OverlayScrollbars.min.css │ └── js │ │ ├── OverlayScrollbars.js │ │ ├── OverlayScrollbars.min.js │ │ ├── jquery.overlayScrollbars.js │ │ └── jquery.overlayScrollbars.min.js │ └── toastr │ ├── toastr.css │ ├── toastr.js.map │ ├── toastr.min.css │ └── toastr.min.js ├── templates ├── base.html ├── index.html ├── paginator.html └── registration │ └── login.html └── todo.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/.isort.cfg -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/SECURITY.md -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/corecode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/__init__.py -------------------------------------------------------------------------------- /apps/corecode/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/apps.py -------------------------------------------------------------------------------- /apps/corecode/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/context_processors.py -------------------------------------------------------------------------------- /apps/corecode/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/forms.py -------------------------------------------------------------------------------- /apps/corecode/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/middleware.py -------------------------------------------------------------------------------- /apps/corecode/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/corecode/migrations/0002_auto_20200506_1520.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/migrations/0002_auto_20200506_1520.py -------------------------------------------------------------------------------- /apps/corecode/migrations/0003_auto_20200726_0925.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/migrations/0003_auto_20200726_0925.py -------------------------------------------------------------------------------- /apps/corecode/migrations/0004_auto_20201124_0614.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/migrations/0004_auto_20201124_0614.py -------------------------------------------------------------------------------- /apps/corecode/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/corecode/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/models.py -------------------------------------------------------------------------------- /apps/corecode/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/signals.py -------------------------------------------------------------------------------- /apps/corecode/templates/corecode/class_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/templates/corecode/class_list.html -------------------------------------------------------------------------------- /apps/corecode/templates/corecode/core_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/templates/corecode/core_confirm_delete.html -------------------------------------------------------------------------------- /apps/corecode/templates/corecode/current_session.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/templates/corecode/current_session.html -------------------------------------------------------------------------------- /apps/corecode/templates/corecode/form_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/templates/corecode/form_snippet.html -------------------------------------------------------------------------------- /apps/corecode/templates/corecode/mgt_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/templates/corecode/mgt_form.html -------------------------------------------------------------------------------- /apps/corecode/templates/corecode/session_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/templates/corecode/session_list.html -------------------------------------------------------------------------------- /apps/corecode/templates/corecode/siteconfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/templates/corecode/siteconfig.html -------------------------------------------------------------------------------- /apps/corecode/templates/corecode/subject_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/templates/corecode/subject_list.html -------------------------------------------------------------------------------- /apps/corecode/templates/corecode/term_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/templates/corecode/term_list.html -------------------------------------------------------------------------------- /apps/corecode/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/corecode/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/tests/test_models.py -------------------------------------------------------------------------------- /apps/corecode/tests/test_views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/corecode/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/urls.py -------------------------------------------------------------------------------- /apps/corecode/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/corecode/views.py -------------------------------------------------------------------------------- /apps/finance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/__init__.py -------------------------------------------------------------------------------- /apps/finance/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/admin.py -------------------------------------------------------------------------------- /apps/finance/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/apps.py -------------------------------------------------------------------------------- /apps/finance/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/forms.py -------------------------------------------------------------------------------- /apps/finance/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/finance/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/finance/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/models.py -------------------------------------------------------------------------------- /apps/finance/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/signals.py -------------------------------------------------------------------------------- /apps/finance/templates/finance/bulk_invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/templates/finance/bulk_invoice.html -------------------------------------------------------------------------------- /apps/finance/templates/finance/invoice_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/templates/finance/invoice_confirm_delete.html -------------------------------------------------------------------------------- /apps/finance/templates/finance/invoice_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/templates/finance/invoice_detail.html -------------------------------------------------------------------------------- /apps/finance/templates/finance/invoice_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/templates/finance/invoice_form.html -------------------------------------------------------------------------------- /apps/finance/templates/finance/invoice_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/templates/finance/invoice_list.html -------------------------------------------------------------------------------- /apps/finance/templates/finance/receipt_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/templates/finance/receipt_form.html -------------------------------------------------------------------------------- /apps/finance/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/tests.py -------------------------------------------------------------------------------- /apps/finance/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/urls.py -------------------------------------------------------------------------------- /apps/finance/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/finance/views.py -------------------------------------------------------------------------------- /apps/result/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/result/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/result/admin.py -------------------------------------------------------------------------------- /apps/result/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/result/apps.py -------------------------------------------------------------------------------- /apps/result/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/result/forms.py -------------------------------------------------------------------------------- /apps/result/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/result/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/result/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/result/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/result/models.py -------------------------------------------------------------------------------- /apps/result/templates/result/all_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/result/templates/result/all_results.html -------------------------------------------------------------------------------- /apps/result/templates/result/create_result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/result/templates/result/create_result.html -------------------------------------------------------------------------------- /apps/result/templates/result/create_result_page2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/result/templates/result/create_result_page2.html -------------------------------------------------------------------------------- /apps/result/templates/result/edit_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/result/templates/result/edit_results.html -------------------------------------------------------------------------------- /apps/result/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/result/tests.py -------------------------------------------------------------------------------- /apps/result/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/result/urls.py -------------------------------------------------------------------------------- /apps/result/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/result/utils.py -------------------------------------------------------------------------------- /apps/result/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/result/views.py -------------------------------------------------------------------------------- /apps/staffs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/staffs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/staffs/admin.py -------------------------------------------------------------------------------- /apps/staffs/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/staffs/apps.py -------------------------------------------------------------------------------- /apps/staffs/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/staffs/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/staffs/migrations/0002_auto_20201124_0614.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/staffs/migrations/0002_auto_20201124_0614.py -------------------------------------------------------------------------------- /apps/staffs/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/staffs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/staffs/models.py -------------------------------------------------------------------------------- /apps/staffs/templates/staffs/staff_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/staffs/templates/staffs/staff_confirm_delete.html -------------------------------------------------------------------------------- /apps/staffs/templates/staffs/staff_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/staffs/templates/staffs/staff_detail.html -------------------------------------------------------------------------------- /apps/staffs/templates/staffs/staff_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/staffs/templates/staffs/staff_form.html -------------------------------------------------------------------------------- /apps/staffs/templates/staffs/staff_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/staffs/templates/staffs/staff_list.html -------------------------------------------------------------------------------- /apps/staffs/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/staffs/tests.py -------------------------------------------------------------------------------- /apps/staffs/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/staffs/urls.py -------------------------------------------------------------------------------- /apps/staffs/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/staffs/views.py -------------------------------------------------------------------------------- /apps/students/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/students/__init__.py -------------------------------------------------------------------------------- /apps/students/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/students/admin.py -------------------------------------------------------------------------------- /apps/students/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/students/apps.py -------------------------------------------------------------------------------- /apps/students/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/students/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/students/migrations/0002_auto_20201124_0614.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/students/migrations/0002_auto_20201124_0614.py -------------------------------------------------------------------------------- /apps/students/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/students/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/students/models.py -------------------------------------------------------------------------------- /apps/students/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/students/signals.py -------------------------------------------------------------------------------- /apps/students/templates/students/student_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/students/templates/students/student_confirm_delete.html -------------------------------------------------------------------------------- /apps/students/templates/students/student_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/students/templates/students/student_detail.html -------------------------------------------------------------------------------- /apps/students/templates/students/student_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/students/templates/students/student_form.html -------------------------------------------------------------------------------- /apps/students/templates/students/student_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/students/templates/students/student_list.html -------------------------------------------------------------------------------- /apps/students/templates/students/students_upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/students/templates/students/students_upload.html -------------------------------------------------------------------------------- /apps/students/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/students/tests.py -------------------------------------------------------------------------------- /apps/students/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/students/urls.py -------------------------------------------------------------------------------- /apps/students/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/apps/students/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/requirements.txt -------------------------------------------------------------------------------- /school_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /school_app/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/school_app/asgi.py -------------------------------------------------------------------------------- /school_app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/school_app/settings.py -------------------------------------------------------------------------------- /school_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/school_app/urls.py -------------------------------------------------------------------------------- /school_app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/school_app/wsgi.py -------------------------------------------------------------------------------- /static/dist/css/adminlte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/css/adminlte.css -------------------------------------------------------------------------------- /static/dist/css/adminlte.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/css/adminlte.css.map -------------------------------------------------------------------------------- /static/dist/css/adminlte.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/css/adminlte.min.css -------------------------------------------------------------------------------- /static/dist/css/adminlte.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/css/adminlte.min.css.map -------------------------------------------------------------------------------- /static/dist/css/login-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/css/login-page.css -------------------------------------------------------------------------------- /static/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/img/avatar.png -------------------------------------------------------------------------------- /static/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/img/avatar04.png -------------------------------------------------------------------------------- /static/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/img/avatar2.png -------------------------------------------------------------------------------- /static/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/img/avatar3.png -------------------------------------------------------------------------------- /static/dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/img/avatar5.png -------------------------------------------------------------------------------- /static/dist/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/img/credit/american-express.png -------------------------------------------------------------------------------- /static/dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /static/dist/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/img/credit/mastercard.png -------------------------------------------------------------------------------- /static/dist/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/img/credit/mestro.png -------------------------------------------------------------------------------- /static/dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /static/dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /static/dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/img/credit/visa.png -------------------------------------------------------------------------------- /static/dist/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/img/login.png -------------------------------------------------------------------------------- /static/dist/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/img/logo.png -------------------------------------------------------------------------------- /static/dist/js/adminlte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/js/adminlte.js -------------------------------------------------------------------------------- /static/dist/js/adminlte.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/js/adminlte.js.map -------------------------------------------------------------------------------- /static/dist/js/adminlte.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/js/adminlte.min.js -------------------------------------------------------------------------------- /static/dist/js/adminlte.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/js/adminlte.min.js.map -------------------------------------------------------------------------------- /static/dist/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/js/custom.js -------------------------------------------------------------------------------- /static/dist/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/js/demo.js -------------------------------------------------------------------------------- /static/dist/js/jquery.formset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/js/jquery.formset.js -------------------------------------------------------------------------------- /static/dist/js/pages/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/js/pages/dashboard.js -------------------------------------------------------------------------------- /static/dist/js/pages/dashboard2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/js/pages/dashboard2.js -------------------------------------------------------------------------------- /static/dist/js/pages/dashboard3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/dist/js/pages/dashboard3.js -------------------------------------------------------------------------------- /static/plugins/Datatables/datatables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/Datatables/datatables.css -------------------------------------------------------------------------------- /static/plugins/Datatables/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/Datatables/datatables.js -------------------------------------------------------------------------------- /static/plugins/Datatables/datatables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/Datatables/datatables.min.css -------------------------------------------------------------------------------- /static/plugins/Datatables/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/Datatables/datatables.min.js -------------------------------------------------------------------------------- /static/plugins/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /static/plugins/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /static/plugins/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /static/plugins/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /static/plugins/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /static/plugins/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /static/plugins/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/plugins/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/css/all.css -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/css/all.min.css -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/css/brands.css -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/css/brands.min.css -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/css/fontawesome.css -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/css/fontawesome.min.css -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/css/regular.css -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/css/regular.min.css -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/css/solid.css -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/css/solid.min.css -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/css/svg-with-js.css -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/css/svg-with-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/css/svg-with-js.min.css -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/css/v4-shims.css -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/css/v4-shims.min.css -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /static/plugins/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/plugins/jquery/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/jquery/core.js -------------------------------------------------------------------------------- /static/plugins/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/jquery/jquery.js -------------------------------------------------------------------------------- /static/plugins/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/jquery/jquery.min.js -------------------------------------------------------------------------------- /static/plugins/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/jquery/jquery.min.map -------------------------------------------------------------------------------- /static/plugins/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/jquery/jquery.slim.js -------------------------------------------------------------------------------- /static/plugins/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /static/plugins/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /static/plugins/overlayScrollbars/css/OverlayScrollbars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/overlayScrollbars/css/OverlayScrollbars.css -------------------------------------------------------------------------------- /static/plugins/overlayScrollbars/css/OverlayScrollbars.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/overlayScrollbars/css/OverlayScrollbars.min.css -------------------------------------------------------------------------------- /static/plugins/overlayScrollbars/js/OverlayScrollbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/overlayScrollbars/js/OverlayScrollbars.js -------------------------------------------------------------------------------- /static/plugins/overlayScrollbars/js/OverlayScrollbars.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/overlayScrollbars/js/OverlayScrollbars.min.js -------------------------------------------------------------------------------- /static/plugins/overlayScrollbars/js/jquery.overlayScrollbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/overlayScrollbars/js/jquery.overlayScrollbars.js -------------------------------------------------------------------------------- /static/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js -------------------------------------------------------------------------------- /static/plugins/toastr/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/toastr/toastr.css -------------------------------------------------------------------------------- /static/plugins/toastr/toastr.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/toastr/toastr.js.map -------------------------------------------------------------------------------- /static/plugins/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/toastr/toastr.min.css -------------------------------------------------------------------------------- /static/plugins/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/static/plugins/toastr/toastr.min.js -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/templates/paginator.html -------------------------------------------------------------------------------- /templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/templates/registration/login.html -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adigunsherif/Django-School-Management-System/HEAD/todo.txt --------------------------------------------------------------------------------