[Django]-Problem with django urls which have a hyphen in them

1👍

My guess is that you wrote a custom template tag, but it’s broken. You’re using it in base.html 😛

5👍

Change [\w-]+ to [-\w]+. For me [\w-]+ never works with python regexp’s.

Leave a comment