Skip to content

Commit

Permalink
💄 Change buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidRomanovizc committed Aug 28, 2023
1 parent 41cbd92 commit 62c0f32
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions keyboards/inline/questionnaires_inline.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async def questionnaires_keyboard(
callback_data=action_keyboard.new(action="report", target_id=target_id),
)
go_back = InlineKeyboardButton(
text=_("⏪️ Остановить"),
text=_("💤 Остановить"),
callback_data=action_keyboard.new(action="stopped", target_id=target_id),
)
ban = InlineKeyboardButton(
Expand Down Expand Up @@ -81,11 +81,15 @@ async def user_link_keyboard(telegram_id: int) -> InlineKeyboardMarkup:
open_chat = InlineKeyboardButton(
text=_("👉 Перейти в чат"), url=f"tg://user?id={telegram_id}"
)
report = InlineKeyboardButton(
text="🔞 Пожаловаться",
callback_data=action_keyboard.new(action="report", target_id=telegram_id),
)
back = InlineKeyboardButton(
text=_("⏪️ Вернуться к просмотру анкет"),
callback_data="go_back_to_viewing_ques",
)
markup.add(open_chat, back)
markup.add(open_chat, report, back)
return markup


Expand Down

0 comments on commit 62c0f32

Please sign in to comment.