1
As the error says, edit_user needs a parameter: the id of the user to edit. You need to pass that in the url
tag.
{% url 'edit_user' pk=my_user.pk %}
or whatever the name of your user object is.
Source:stackexchange.com
1
As the error says, edit_user needs a parameter: the id of the user to edit. You need to pass that in the url
tag.
{% url 'edit_user' pk=my_user.pk %}
or whatever the name of your user object is.