[Answer]-How do I check whether a path matches a view name defined in urls.py?

1👍

You’re using reverse wrong.

Try: reverse("app:edit", kwargs={'month': 7, 'year': 2014, 'day': 10}).

👤cazgp

Leave a comment