[Fixed]-Django: correct URL appears in developer tools but link doesn't use that src

1👍

✅

This has nothing to do with Django.

a elements don’t have a src attribute. The destination goes in the href attribute, which you left blank.

<a href="{% url 'dollhouse' dollhouse=workingdollhouse.id %}">{{workingdollhouse.dollhouse_name}}</a>

Leave a comment