#13470 closed (duplicate)
Debug TEMPLATE_LOADERS causes 'source' to be set to "<unknown source>" when TEMPLATE_DEBUG is True
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Uncategorized | Version: | 1.2-beta |
Severity: | Keywords: | settings template_debug template_loaders template node source | |
Cc: | sdeibel@… | Triage Stage: | Unreviewed |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
A work around is to set settings.py TEMPLATE_LOADERS to start with (or
contain only) the following:
'django.template.loaders.filesystem.load_template_source', 'django.template.loaders.app_directories.load_template_source',
However, it seems it would be good to properly set 'source' on nodes when
TEMPLATE_DEBUG is True. To fix this, change template/loader.py's
BaseLoader.load_template to read as follows so that an origin object
is properly created and sent into get_template_from_string when
TEMPLATE_DEBUG is True:
def load_template(self, template_name, template_dirs=None): source, origin = self.load_template_source(template_name, template_dirs) origin_obj = make_origin(origin, self, template_name, template_dirs) template = get_template_from_string(source, origin=origin_obj, name=template_name) return template, origin
This is based on the 1.2beta-1 release.
Change History (3)
comment:1 by , 15 years ago
Description: | modified (diff) |
---|
comment:2 by , 15 years ago
Resolution: | → duplicate |
---|---|
Status: | new → closed |
This has already been reported and fixed in #12992.
Note:
See TracTickets
for help on using tickets.
Please use preview.