two-scoops-of-django-3.x
two-scoops-of-django-3.x copied to clipboard
Example 10.12: URL namespace
Location within the Book
- Chapter or Appendix: 10
- Section: 10.5.2
- Subsection: Example 10.12
Description
I believe the authors intend to use URL namespace here since they've used it in the entire book.
<form action="{% url "flavor_list" %}" method="GET">
Possible Solutions
<form action="{% url "flavors:list" %}" method="GET">
Your full name so we can provide accurate credit within the book
Jerry Wu