Posts by rodrigomotta1 • 1 point
1 post
-
0
votes2
answers218
viewsA: for in range no flask template
You don’t get data return in your template because you’re using the wrong variable name. Instead of resp, you must use data, the same name you used to pass the data in the function return index. A…