Django

Code

Changeset 4062

Show
Ignore:
Timestamp:
11/10/06 09:28:32 (2 years ago)
Author:
adrian
Message:

Fixed typo in docs/templates_python.txt

Files:

Legend:

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

    r3920 r4062  
    322322        def some_view(request): 
    323323            # ... 
    324             return render_to_response('my_template'html', 
     324            return render_to_response('my_template.html', 
    325325                                      my_data_dictionary, 
    326326                                      context_instance=RequestContext(request))