1
vote
1answer
58 views

Is it possible to have a model with both a one-to many and a many-to-many relationship?

I have a system where I will have Products (classes) that can be taught by one or more Instructors. These Instructors can also create Products in which case they should be accessible via the Product ...
0
votes
1answer
58 views

Querying a single field within a Jinja2 template

I'm working on an application where users can enter work requests, and subsequently go in and search for requests. The issue I'm having is building out the request summary screen. Basically, it ...
3
votes
2answers
2k views

Flask - SQLAlchemy: how to update/insert row in db

I have been playing with the combo Flask, Flask-SQLAlchemy, Flask-WTF and Jinja2 for a small app. My question is how to insert or update a specific record in the db? I have read some of the other ...