1👍
✅
This is wrong:
<img src="/static/b_icon.png"
This is right:
{% load static %}
<img src="{% static 'b_icon.png' %}
Just take a moment to read carefully Managing static files, Serving static files during development docs and follow all steps.
Source:stackexchange.com