Django

Code

Changeset 3016

Show
Ignore:
Timestamp:
05/31/06 09:26:44 (2 years ago)
Author:
adrian
Message:

Fixed #2046 -- Typo in tutorial03.txt. Thanks, asmodai

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/tutorial03.txt

    r2923 r3016  
    210210        return HttpResponse(t.render(c)) 
    211211 
    212 That code loads the template called "polls/index" and passes it a context. The 
     212That code loads the template called "polls/index.html" and passes it a context. The 
    213213context is a dictionary mapping template variable names to Python objects. 
    214214