def start(): keyboard = { 'Пользователи': '/admin/users', 'Вышли текст': '/manual', 'Вышли картинку': '/image', 'Проверка ввода': '/hello' } return template("Главное меню", keyboard, newmessage=True)
def usersList(): keyboard = { user['username']: '******'.format(user['id']) for user in users.get() } return template("Список пользователей:", keyboard, back='/start&newmessage=False', keyboard_row_width=1)
def usersList(): return template("image", image=r'C:\Users\Alex\Pictures\2018-01-08\IMG_1464.JPG', next='/start')
def usersList(): return template("Длинный текст без кнопок", next='/start')
def hello(poststring): poststring = decode(poststring) return template("Введен {0}".format(poststring), next='/start', newmessage=True)
def hello(): return template("Привет, введите текст:", next='/hello', newmessage=True, post=True)