Opened 11 years ago

Closed 11 years ago

#19328 closed Uncategorized (invalid)

bug in code

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

when running through this tutorial i ran into an issue at the top of page 4.

in the code snipet it uses:

<form action="{% url 'polls:vote' poll.id %}" method="post">

however this threw an error, i think it should be this:

<form action="{% url polls:vote poll.id %}" method="post">

which seems to work

Change History (1)

comment:1 by Claude Paroz, 11 years ago

Resolution: invalid
Status: newclosed

See #19013 (and many others...)

Note: See TracTickets for help on using tickets.
Back to Top