From 631fabf30dec054aa0c7561dbbbf862527096b71 Mon Sep 17 00:00:00 2001 From: huker667 Date: Tue, 14 Jul 2026 20:45:25 +0300 Subject: add row builder (da krutoi) --- commands.py | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) (limited to 'commands.py') diff --git a/commands.py b/commands.py index b521ad1..27c7261 100644 --- a/commands.py +++ b/commands.py @@ -341,14 +341,19 @@ async def settings_handler(event: Union[Message, CallbackQuery]): notify_status = "net" notify_cb = "da" + if config["markdown"] == "new": + markdown_status = "новый" + markdown_cb = "old" + else: + markdown_status = "старый" + markdown_cb = "new" + keyboard = InlineKeyboardMarkup( inline_keyboard=[ [ InlineKeyboardButton( text=f"модели ({models_count})", callback_data=f"models%{user_id}" - ) - ], - [ + ), InlineKeyboardButton( text=f"промпты ({prompts_count})", callback_data=f"prompts%{user_id}" ) @@ -357,9 +362,7 @@ async def settings_handler(event: Union[Message, CallbackQuery]): InlineKeyboardButton( text=f"стрим: {stream_status}", callback_data=f"set_stream%{user_id}%{stream_cb}", - ) - ], - [ + ), InlineKeyboardButton( text=f"отклик: {call_status}", callback_data=f"set_call%{user_id}%{call_cb}", @@ -369,10 +372,15 @@ async def settings_handler(event: Union[Message, CallbackQuery]): InlineKeyboardButton( text=f"рассылка: {notify_status}", callback_data=f"set_notify%{user_id}%{notify_cb}", - ) + ), + InlineKeyboardButton( + text=f"маркдаун: {markdown_status}", + callback_data=f"set_markdown%{user_id}%{markdown_cb}", + ), + ], - [InlineKeyboardButton(text="донат", callback_data=f"donate%{user_id}")], - [InlineKeyboardButton(text="о боте", callback_data=f"about%{user_id}")], + [InlineKeyboardButton(text="💸 донат", callback_data=f"donate%{user_id}")], + [InlineKeyboardButton(text="🤖 о боте", callback_data=f"about%{user_id}")], ] ) -- cgit v1.3.1