Django is not loading my static files. I'm trying to load an image from the static folder, but it doesn't work.
file.html
<body>
      {% load static %}
      <img src="{% static "products/logo.jpg" %}" alt="My image">
</body>
structure
app
|_______products
       |_________templates
                 |_________file.html
       |_________models.py
       |_________ ...
|______static
       |_________products
                 |_________logo.jpg
settings
...
INSTALLED_APPS = [
    ...
    'django.contrib.staticfiles',
    ...
]
...
STATIC_URL = '/static/'
 
     
    