Django

Code

Show
Ignore:
Timestamp:
02/18/08 17:43:12 (11 months ago)
Author:
mtredinnick
Message:

Fixed a few errors in the documentation. Thanks, Matthew Flanagan, panni@fragstore.net and adamv.

Fixed #6411, #6426, #6524, #6555.

Files:

Legend:

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

    r7020 r7130  
    396396~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    397397 
     398**New in Django development version** 
     399 
    398400If ``TEMPLATE_CONTEXT_PROCESSORS`` contains this processor, every 
    399401``RequestContext`` will contain a variable ``MEDIA_URL``, providing the 
     
    10151017 
    10161018    def render(self, context): 
    1017         t = template.load_template('small_fragment.html') 
     1019        t = template.loader.get_template('small_fragment.html') 
    10181020        return t.render(Context({'var': obj}, autoescape=context.autoescape)) 
    10191021