diff --git a/app/handlers/admin/welcome_text.py b/app/handlers/admin/welcome_text.py index 249672cf..72a069fc 100644 --- a/app/handlers/admin/welcome_text.py +++ b/app/handlers/admin/welcome_text.py @@ -86,6 +86,22 @@ async def show_placeholders_help( ) await callback.answer() +@admin_required +@error_handler +async def show_formatting_help( + callback: types.CallbackQuery, + db_user: User, + db: AsyncSession +): + formatting_info = get_telegram_formatting_info() + + await callback.message.edit_text( + formatting_info, + reply_markup=get_welcome_text_keyboard(db_user.language), + parse_mode="HTML" + ) + await callback.answer() + @admin_required @error_handler async def start_edit_welcome_text(