Help please find the error.
I want to display the picture glad.jpg , but Django does not find it.
HTML registration.html
<!DOCTYPE html> <img src="static/glad.jpg" alt=img> settings.py
STATIC_URL = '/static/' PROJECT_DIR = os.path.dirname(os.path.abspath(__file__)) STATIC_ROOT = BASE_DIR Browser
GET http://127.0.0.1:8000/static/glad.jpg 404 (Not Found) Browser Console GET http://127.0.0.1:8000/static/glad.jpg 404 (Not Found)
Project tree screen
I have no idea why it doesn’t work, I read / tried everything.
Did the same
<!DOCTYPE html> {% load static %} <img src="{% static "glad.jpg" %} " alt="img"> , but nothing heals it. Even the pycharm sees the image. Collectstatic did a bunch of times. Help me please!

