[Django]-GET request not found

4👍

In your articles route the regex is looking for digits. Correct the regex to match any characters that can occur in your article_category field. For example, the \w matches any alphanumeric character and the underscore.

^articles/ ^category/(?P<article_category>\w+)/$

Leave a comment