Обновлён список сумм пополнения
This commit is contained in:
@@ -138,21 +138,16 @@ def subhist_keyboard():
|
||||
|
||||
def popup_keyboard():
|
||||
"""
|
||||
Пополнение (суммы, стиль как в твоём topup_menu)
|
||||
Пополнение: суммы как в твоём топап-меню.
|
||||
"""
|
||||
builder = InlineKeyboardBuilder()
|
||||
builder.row(
|
||||
InlineKeyboardButton(text="200 ₽", callback_data="popup:200"),
|
||||
InlineKeyboardButton(text="500 ₽", callback_data="popup:500"),
|
||||
)
|
||||
builder.row(
|
||||
InlineKeyboardButton(text="1000 ₽", callback_data="popup:1000"),
|
||||
InlineKeyboardButton(text="2000 ₽", callback_data="popup:2000"),
|
||||
)
|
||||
builder.row(
|
||||
InlineKeyboardButton(text="3000 ₽", callback_data="popup:3000"),
|
||||
InlineKeyboardButton(text="5000 ₽", callback_data="popup:5000"),
|
||||
)
|
||||
for amount in [200, 300, 600, 1000]:
|
||||
builder.row(
|
||||
InlineKeyboardButton(
|
||||
text=f"{amount} ₽",
|
||||
callback_data=f"popup:{amount}",
|
||||
)
|
||||
)
|
||||
builder.row(
|
||||
InlineKeyboardButton(
|
||||
text="🔙 Назад",
|
||||
@@ -162,6 +157,7 @@ def popup_keyboard():
|
||||
return builder.as_markup()
|
||||
|
||||
|
||||
|
||||
def balance_keyboard():
|
||||
"""
|
||||
Баланс
|
||||
|
||||
Reference in New Issue
Block a user