[Fixed]-Django: using url parameters and url namespacing simultaneously

1👍

It seems odd that you can’t see what’s causing this, since you obviously know it’s to do with the parameter. Where do you think that value is going to come from? You need to pass it in your url tag:

<a href='{% url "myname:index" parameter=value %}'>

Leave a comment