├── .gitattributes ├── .gitignore ├── NewsApp ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── QuizApp ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_remove_themequiz_quiz_quiz_theme.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── README.md ├── TeacherApp ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_edulevel_options_teacher_created_teacher_image_and_more.py │ ├── 0003_alter_teacher_education_level_and_more.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── core ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── requirements.txt └── templates ├── abiturient.html ├── index.html ├── kalkulyator.html ├── schedule.html ├── students.html ├── subject.html └── teachers.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/.gitignore -------------------------------------------------------------------------------- /NewsApp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NewsApp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/NewsApp/admin.py -------------------------------------------------------------------------------- /NewsApp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/NewsApp/apps.py -------------------------------------------------------------------------------- /NewsApp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/NewsApp/migrations/0001_initial.py -------------------------------------------------------------------------------- /NewsApp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NewsApp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/NewsApp/models.py -------------------------------------------------------------------------------- /NewsApp/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/NewsApp/serializers.py -------------------------------------------------------------------------------- /NewsApp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/NewsApp/tests.py -------------------------------------------------------------------------------- /NewsApp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/NewsApp/urls.py -------------------------------------------------------------------------------- /NewsApp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/NewsApp/views.py -------------------------------------------------------------------------------- /QuizApp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QuizApp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/QuizApp/admin.py -------------------------------------------------------------------------------- /QuizApp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/QuizApp/apps.py -------------------------------------------------------------------------------- /QuizApp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/QuizApp/migrations/0001_initial.py -------------------------------------------------------------------------------- /QuizApp/migrations/0002_remove_themequiz_quiz_quiz_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/QuizApp/migrations/0002_remove_themequiz_quiz_quiz_theme.py -------------------------------------------------------------------------------- /QuizApp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QuizApp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/QuizApp/models.py -------------------------------------------------------------------------------- /QuizApp/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/QuizApp/serializers.py -------------------------------------------------------------------------------- /QuizApp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/QuizApp/tests.py -------------------------------------------------------------------------------- /QuizApp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/QuizApp/urls.py -------------------------------------------------------------------------------- /QuizApp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/QuizApp/views.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## TUIT Math Website 2 | -------------------------------------------------------------------------------- /TeacherApp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TeacherApp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/TeacherApp/admin.py -------------------------------------------------------------------------------- /TeacherApp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/TeacherApp/apps.py -------------------------------------------------------------------------------- /TeacherApp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/TeacherApp/migrations/0001_initial.py -------------------------------------------------------------------------------- /TeacherApp/migrations/0002_alter_edulevel_options_teacher_created_teacher_image_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/TeacherApp/migrations/0002_alter_edulevel_options_teacher_created_teacher_image_and_more.py -------------------------------------------------------------------------------- /TeacherApp/migrations/0003_alter_teacher_education_level_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/TeacherApp/migrations/0003_alter_teacher_education_level_and_more.py -------------------------------------------------------------------------------- /TeacherApp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TeacherApp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/TeacherApp/models.py -------------------------------------------------------------------------------- /TeacherApp/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/TeacherApp/serializers.py -------------------------------------------------------------------------------- /TeacherApp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/TeacherApp/tests.py -------------------------------------------------------------------------------- /TeacherApp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/TeacherApp/urls.py -------------------------------------------------------------------------------- /TeacherApp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/TeacherApp/views.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/core/asgi.py -------------------------------------------------------------------------------- /core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/core/settings.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/core/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/abiturient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/templates/abiturient.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/kalkulyator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/templates/kalkulyator.html -------------------------------------------------------------------------------- /templates/schedule.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/students.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/templates/students.html -------------------------------------------------------------------------------- /templates/subject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/templates/subject.html -------------------------------------------------------------------------------- /templates/teachers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlysharifjon/Monitoring-Platform/HEAD/templates/teachers.html --------------------------------------------------------------------------------