You've already forked Travel-Agent
113 lines
2.9 KiB
Python
113 lines
2.9 KiB
Python
__all__ = ("get",)
|
||
|
||
from aiogram import types
|
||
from aiogram.utils.keyboard import InlineKeyboardBuilder
|
||
|
||
from app.models.travel import Travel
|
||
|
||
|
||
def get(travel: Travel):
|
||
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_page_{travel.id}_0",
|
||
),
|
||
types.InlineKeyboardButton(
|
||
text="β Add location",
|
||
callback_data=f"travel_add_location_{travel.id}",
|
||
),
|
||
)
|
||
builder.row(
|
||
types.InlineKeyboardButton(
|
||
text="π€ Users",
|
||
callback_data=f"travel_users_page_{travel.id}_0",
|
||
),
|
||
types.InlineKeyboardButton(
|
||
text="β Add user",
|
||
callback_data=f"travel_add_user_{travel.id}",
|
||
),
|
||
)
|
||
builder.row(
|
||
types.InlineKeyboardButton(
|
||
text="π Notes",
|
||
callback_data=f"travel_notes_page_{travel.id}_0",
|
||
),
|
||
types.InlineKeyboardButton(
|
||
text="β Add note",
|
||
callback_data=f"travel_add_note_{travel.id}",
|
||
),
|
||
)
|
||
builder.row(
|
||
types.InlineKeyboardButton(
|
||
text="πΊοΈ Routes",
|
||
callback_data=f"travel_routes_{travel.id}",
|
||
),
|
||
)
|
||
builder.row(
|
||
types.InlineKeyboardButton(
|
||
text="β Delete travel",
|
||
callback_data=f"travel_delete_{travel.id}",
|
||
),
|
||
)
|
||
builder.row(
|
||
types.InlineKeyboardButton(
|
||
text="β¬
οΈ",
|
||
callback_data="travels",
|
||
),
|
||
)
|
||
|
||
return builder.as_markup()
|
||
|
||
|
||
def get_public(travel: Travel):
|
||
builder = InlineKeyboardBuilder()
|
||
|
||
builder.row(
|
||
types.InlineKeyboardButton(
|
||
text="πΊοΈ Locations",
|
||
callback_data=f"travel_locations_{travel.id}",
|
||
),
|
||
)
|
||
builder.row(
|
||
types.InlineKeyboardButton(
|
||
text="π€ Users",
|
||
callback_data=f"travel_users_{travel.id}",
|
||
),
|
||
)
|
||
builder.row(
|
||
types.InlineKeyboardButton(
|
||
text="π Notes",
|
||
callback_data=f"travel_notes_{travel.id}",
|
||
),
|
||
types.InlineKeyboardButton(
|
||
text="β Add note",
|
||
callback_data=f"travel_add_note_{travel.id}",
|
||
),
|
||
)
|
||
builder.row(
|
||
types.InlineKeyboardButton(
|
||
text="πΊοΈ Routes",
|
||
callback_data=f"travel_routes_{travel.id}",
|
||
),
|
||
)
|
||
builder.row(
|
||
types.InlineKeyboardButton(
|
||
text="β¬
οΈ",
|
||
callback_data="travels",
|
||
),
|
||
)
|
||
|
||
return builder.as_markup()
|