Changes between Version 46 and Version 47 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Nov 26, 2005, 5:40:08 PM (19 years ago)
Author:
rjwittams
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v46 v47  
    367367}}}
    368368
    369 == Changed the way custom template tags and filters are registered ==
     369== Template system changes ==
    370370
    371371As of [1443], we changed the way custom template tags and filters are registered. If you've written custom template tags or filters, you'll need to make a couple of changes:
     
    469469
    470470See [http://www.djangoproject.com/documentation/templates_python/#writing-custom-template-filters Writing custom template filters] and [http://www.djangoproject.com/documentation/templates_python/#writing-custom-template-tags Writing custom template tags] for full documentation.
     471
     472===Templates ====
     473Templates that are included in another template using {%include%} or {%ssi%} must explicitly {%load%} all libraries they need for their tags and filters. Some templates may have worked in the past due to previous requests registering tags : this will no longer work. 
Back to Top