﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
13470	"Debug TEMPLATE_LOADERS causes 'source' to be set to ""&lt;unknown source&gt;"" when TEMPLATE_DEBUG is True"	sdeibel@…	nobody	"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.
"		new	Uncategorized	1.2-beta			settings template_debug template_loaders template node source	sdeibel@…	Unreviewed	1	0	0	0	0	0
