so.... I'm a beginner in python flask trying to make a dashboard.
I have a folder where my uploaded pictures are located.
structure:
manage.py # this is where I run the program.
src
|--pic
|--items
|-- pic_here.jpg
how should I set up so I could load the picture and get it into <img>
?
I tried searching but all they showed was how to set up static folders. I don't think this is one for static, the pictures are what I upload via dashboard.
in other words, src/pic/items is where my saved images are located and how do I set my flask to load this picture?