-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeyboards_ru.py
More file actions
38 lines (28 loc) · 2.53 KB
/
Copy pathkeyboards_ru.py
File metadata and controls
38 lines (28 loc) · 2.53 KB
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
from aiogram.types import (ReplyKeyboardMarkup, KeyboardButton,
InlineKeyboardButton, InlineKeyboardMarkup)
main_menu_buttons = ReplyKeyboardMarkup(keyboard=[[KeyboardButton(text='🖨️ Распечатать 🖨️'),
KeyboardButton(text='⚡️ Основные вопросы 💢')],
[KeyboardButton(text='💲 Цены 💸'),
KeyboardButton(text='📝 Информация об организации 📚')]],
resize_keyboard=True, input_field_placeholder='Выберите из списка:')
comeback = ReplyKeyboardMarkup(keyboard=[[KeyboardButton(text='🔙 Назад ↩️')]], resize_keyboard=True)
# buildings = ReplyKeyboardMarkup(keyboard=[[KeyboardButton(text='🏙️ Корпус 1 🏬'),
# KeyboardButton(text='🏙️ Корпус 2 🏦')]],
# resize_keyboard=True, input_field_placeholder='Выберите корпус:')
delete_delivery = ReplyKeyboardMarkup(keyboard=[[KeyboardButton(text='❌ Отменить заказ')]],
resize_keyboard=True)
yandex_disk = InlineKeyboardMarkup(inline_keyboard=[[InlineKeyboardButton(
text='📋 Расписание',
url='https://disk.yandex.ru/d/WTGvYlu4Vvs1ow',
callback_data='raspisanie')]])
payment1 = ReplyKeyboardMarkup(keyboard=[[KeyboardButton(text='💸 Перейти к оплате')],
[KeyboardButton(text='❌ Отменить заказ')]],
resize_keyboard=True, input_field_placeholder='Выберите действие:')
payment2 = ReplyKeyboardMarkup(keyboard=[[KeyboardButton(text='💸 Перейти к oплате')],
[KeyboardButton(text='❌ Отменить заказ')]],
resize_keyboard=True, input_field_placeholder='Выберите действие:')
keyboard_for_comment = ReplyKeyboardMarkup(keyboard=[[KeyboardButton(text='❌ Отменить заказ')],
[KeyboardButton(text='⏭️ Пропустить')]],
resize_keyboard=True, input_field_placeholder='Комментарий')
success_payment = ReplyKeyboardMarkup(keyboard=[[KeyboardButton(text='📕 В главное меню ⭐')]],
resize_keyboard=True)