This commit is contained in:
2026-01-03 17:16:30 +03:00
parent 39c99c4165
commit a82fb437d5
4 changed files with 570 additions and 1 deletions
@@ -4,10 +4,20 @@ from aiogram.fsm.state import State, StatesGroup
class UserMenuSG(StatesGroup):
main = State()
available_tests = State()
test_detail = State()
edit_name = State()
edit_group = State()
class UserTestSG(StatesGroup):
password_input = State()
question_single = State()
question_multiple = State()
question_input = State()
results = State()
detailed_results = State()
class UserRegistrationSG(StatesGroup):
input_name = State()
select_group = State()