__all__ = ("get",) from aiogram import types from aiogram.utils.keyboard import InlineKeyboardBuilder def get(travel_id: int): builder = InlineKeyboardBuilder() builder.row( types.InlineKeyboardButton( text="πŸ“ Change title", callback_data=f"travel_change_{travel_id}_title", ), types.InlineKeyboardButton( text="ℹ️ Change description", callback_data=f"travel_change_{travel_id}_description", ), ) builder.row( types.InlineKeyboardButton( text="πŸ—ΊοΈ Locations", callback_data=f"travel_locations_{travel_id}", ), types.InlineKeyboardButton( text="πŸ‘€ Users", callback_data=f"travel_users_{travel_id}", ), ) builder.row( types.InlineKeyboardButton( text="βž• Add location", callback_data=f"travel_add_{travel_id}_location", ), types.InlineKeyboardButton( text="βž• Add user", callback_data=f"travel_add_{travel_id}_user", ), ) builder.row( types.InlineKeyboardButton( text="⬅️", callback_data="travels", ), ) return builder.as_markup()