No one can provide specific help without seeing any code.
Things I would be thinking about if it was my site:
- Are these photos “static” or “media” files?
- Are other photos displaying or is it only specific ones?
- If it’s a “static” file have I run
manage.py collectstatic
since I last deployed code? - Does the file exist on the server’s file system in the location I would expect?
- When I view the source HTML in the browser, is the path to the image file what I would expect?
- Does the image load if I use that path directly in the browser?
- If it’s a “media” file does the object with an
ImageField
describing it contain the data I would expect?