-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeyboards.py
44 lines (33 loc) · 970 Bytes
/
keyboards.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from aiogram.types import ReplyKeyboardMarkup, KeyboardButton
level_1 = ReplyKeyboardMarkup(resize_keyboard=True).add(
KeyboardButton('Some list'),
KeyboardButton('Some details')
).add(
KeyboardButton('Back')
)
level_2_list = ReplyKeyboardMarkup(resize_keyboard=True).add(
KeyboardButton('Filter list'),
KeyboardButton('Open my list')
).add(
KeyboardButton('Back')
)
level_2_detail = ReplyKeyboardMarkup(resize_keyboard=True).add(
KeyboardButton('Open more details')
).add(
KeyboardButton('Back')
)
level_3_my_list = ReplyKeyboardMarkup(resize_keyboard=True).add(
KeyboardButton('My list can be here'),
).add(
KeyboardButton('Back')
)
level_3_filter = ReplyKeyboardMarkup(resize_keyboard=True).add(
KeyboardButton('You can return now'),
).add(
KeyboardButton('Back')
)
level_3_detail = ReplyKeyboardMarkup(resize_keyboard=True).add(
KeyboardButton('Details can be here')
).add(
KeyboardButton('Back')
)