[Answer]-Django Static Files not syncing image

1👍

Your problem lies in this line

 <img scr="{% static "images/python-logo.jpg" %}" width="200"/>

it should be

 <img src="{% static "images/python-logo.jpg" %}" width="200"/>

This is not a problem with your static files. You’ve simply misspelled the <img src> attribute 🙂

Leave a comment