class User(db.Model): __tablename__ = 'users' id = db.Column(db.Integer, primary_key=True) login = db.Column(db.String(80), unique=True) password = db.Column(db.String(64)) is_editor = db.Column(Boolean) # Flask-Login integration def is_authenticated(self): return True def is_active(self): return True def is_anonymous(self): return False def get_id(self): return self.id def __str__(self): return self.login class UserView(sqla.ModelView): # я так понимаю здесь нужно как-то определить какой юзер залогинен # но print(dir(login.current_user.)) выдаёт следующее # ['__bool__', '__class__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__'] def is_accessible(self): return login.current_user.is_authenticated
Как же правильно сделать?