В какие тэги можно передавать параметры кроме тэга id?
а в class указываю стиль для обработчика
Бывает такое что нужно передавать больше пораметров, как это сделать?
defects = db.relationship('Defect', backref=db.backref('author', lazy=True), lazy=True)
While lazy-loading a relationship is fast, it can easily become a major bottleneck when you end up triggering extra queries in a loop for more than a few objects. For this case, SQLAlchemy lets you override the loading strategy on the query level. If you wanted a single query to load all categories and their posts, you could do it like this: