two-scoops-of-django-3.x
two-scoops-of-django-3.x copied to clipboard
Example 11.12: URL namespace error
Location within the Book
- Chapter or Appendix: 11
- Section: 11.1.1
- Subsection: Example 11.2
Description
It seems that flavor
used in the redirect
function in post
method is a typo.
I believe the authors intend to use flavors
here.
return redirect("flavor:detail")
Possible Solutions
return redirect("flavors:detail")
Your full name so we can provide accurate credit within the book
Jerry Wu