add files project
This commit is contained in:
19
app/telegram/Keyboards/reply_keyboards.py
Normal file
19
app/telegram/Keyboards/reply_keyboards.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from aiogram.types import ReplyKeyboardMarkup, KeyboardButton
|
||||
|
||||
base_buttons_markup = ReplyKeyboardMarkup(keyboard=[
|
||||
[KeyboardButton(text="👤 Профиль")],
|
||||
# [KeyboardButton(text="Настройки")]
|
||||
], resize_keyboard=True)
|
||||
|
||||
trigger_markup = ReplyKeyboardMarkup(keyboard=[ # ИЗМЕНИТЬ НА INLINE
|
||||
[KeyboardButton(text='Ручной'), KeyboardButton(text='TradingView')],
|
||||
[KeyboardButton(text="Автоматический")]
|
||||
], resize_keyboard=True)
|
||||
|
||||
buttons_yes_no_markup = ReplyKeyboardMarkup(keyboard=[ # ИЗМЕНИТЬ НА INLINE
|
||||
[KeyboardButton(text='Да'), KeyboardButton(text='Нет')]
|
||||
], resize_keyboard=True)
|
||||
|
||||
buttons_on_off_markup = ReplyKeyboardMarkup(keyboard=[ # ИЗМЕНИТЬ НА INLINE
|
||||
[KeyboardButton(text='Включить'), KeyboardButton(text='Выключить')]
|
||||
], resize_keyboard=True)
|
Reference in New Issue
Block a user