[Answered ]-NoReverseMatch at / 'usuario' is not a registered namespace inside 'accounts'

1👍

You have to add arguments like this: {% url 'accounts:usuario' user.pk %}

Also your context does not have pk, it seems that you have to use user.pk

Look at template tag url for more info.

👤NKSM

Leave a comment