[Answered ]-Django pass extra option through url templatetag to view

2👍

How could this work? The url tag just outputs a URL that is valid in your urlconf and which maps the arguments into the URL. But your url has no place for alternative values for status – it’s hard-coded.

If you want to pass parameters into a URL pattern, the pattern needs to have a space for the parameter.

Leave a comment