blob: 1b74b562907b874635de92b32b592ad7ffc6ec56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
from telebot.types import InlineKeyboardMarkup, InlineKeyboardButton
from database.models import Server
def get_locations_markup():
""" Inline buttons для выдачи всех локаций серверов """
actions = InlineKeyboardMarkup(row_width=1)
servers_obj = Server.select()
for server in servers_obj:
actions.add(InlineKeyboardButton(text=f"🌍 {server.location}", callback_data=str(server.id)))
return actions
def get_instruction_markup():
""" Inline buttons для выдачи ссылки на инструкцию """
actions = InlineKeyboardMarkup(row_width=1)
actions.add(InlineKeyboardButton(text="📖 Инструкция для подключения", url="https://telegra.ph/"
"Kak-ispolzovat-VPN-servis-"
"Guard-Tunnel-01-16"))
return actions
|