#18689 closed Uncategorized (invalid)
Error in code example
Reported by: | anonymous | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.4 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
At the bottom of part 3 of the tutorial (https://docs.djangoproject.com/en/dev/intro/tutorial03/) the code snippet:
<li><a href="{% url 'polls.views.detail' poll.id %}">{{ poll.question }}</a></li>
generates a "No Reverse Match" error.
Removing the single quotes around polls.views.detail fixes the problem:
<li><a href="{% url polls.views.detail poll.id %}">{{ poll.question }}</a></li>
Note:
See TracTickets
for help on using tickets.
Duplicate of at least a dozen other tickets -- you aren't reading the docs for the version of Django you're using.