When viewing page the image is not loaded. The image is uploaded via Django-admin The part of HTML template loading image is:
Home.html
<img class="card-img-top" src="{{ product.image.url }}">
settings.py
STATIC_URL = '/static/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
MEDIA_URL = '/media/'
The error shown in the terminal:
Not Found: /media/img/sandstone.png [00/Aug/0000 00:00:00] "GET /media/img/image.png HTTP/1.1" 404 2581