Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#2046 closed defect (fixed)

[PATCH] Tutorial 3 lists wrong template name

Reported by: asmodai@… Owned by: Jacob
Component: Documentation Version: dev
Severity: trivial 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

Tutorial 3 has:

That code loads the template called "polls/index" and passes it a context. The context is a dictionary mapping template variable names to Python objects.

With the code just above it this should be changed to read:

That code loads the template called "polls/index.html" and passes it a context. The context is a dictionary mapping template variable names to Python objects.

Attachments (1)

tutorial03.txt.diff (636 bytes ) - added by asmodai@… 18 years ago.
Patch for fixing the documentation nit.

Download all attachments as: .zip

Change History (3)

by asmodai@…, 18 years ago

Attachment: tutorial03.txt.diff added

Patch for fixing the documentation nit.

comment:1 by asmodai@…, 18 years ago

Summary: Tutorial 3 lists wrong template name[PATCH] Tutorial 3 lists wrong template name

comment:2 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [3016]) Fixed #2046 -- Typo in tutorial03.txt. Thanks, asmodai

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