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