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.
Source:stackexchange.com