[Answered ]-Django: NoReverseMatch at

1👍

Change this

  <a href="{% url 'profile' object.user.profile %}">{{object.user.username}}</a>

to

  <a href="{% url 'profile' object.user.profile.pk %}">{{object.user.username}}</a>

that should work.

Leave a comment