[Django]-Django: dynamic URL for user profiles

4👍

You should put the username in url template tag of profile

{% url 'profile' user.username %}

Check docs:
https://docs.djangoproject.com/en/1.11/topics/http/urls/#examples

Leave a comment