Changes between Version 4 and Version 5 of NamespaceSimplification


Ignore:
Timestamp:
Jan 13, 2006, 11:31:41 AM (19 years ago)
Author:
jkocherhans <jkocherhans@…>
Comment:

added infor for updating TEMPLATE_LOADERS

Legend:

Unmodified
Added
Removed
Modified
  • NamespaceSimplification

    v4 v5  
    2020Rename {{{DjangoContext}}} to ??? and move to {{{django.template}}} (name still not decided)
    2121
     22You will need to update TEMPLATE_LOADERS in your settings from
     23{{{
     24TEMPLATE_LOADERS = (
     25    'django.core.template.loaders.filesystem.load_template_source',
     26    'django.core.template.loaders.app_directories.load_template_source',
     27#    'django.core.template.loaders.eggs.load_template_source',
     28)
     29}}}
     30
     31to
     32
     33{{{
     34TEMPLATE_LOADERS = (
     35    'django.template.loaders.filesystem.load_template_source',
     36    'django.template.loaders.app_directories.load_template_source',
     37#    'django.template.loaders.eggs.load_template_source',
     38)
     39}}}
     40
    2241
    2342== Move formfields ==
Back to Top