Forums

How to present fetched rows in multiple pages and get updates.

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?

Are you having difficulties working out how to write the code to get the input from the user and submit it to the server for processing? If so, our Flask tutorial might help -- it might be a bit basic for you on the database side, but it does cover how to do forms and handle data from them in Flask.

If it's more complicated than that, could you give some more details?