I am new to Python-Flask can you guide the correct design approach to my problem below.
My Query returns 25 rows, I need to present each row at a time and receive additional comments from the user.
I tried using SQLAlchemy; the pagination feature available in the SQLAlchemy db.query.pagination will not support my requirement. As this pagination is allowing the user to navigate through all the rows. But I am not able to collect the user comments/inputs.
What is the best design to handle this situation?