19 lines
600 B
Python
19 lines
600 B
Python
|
"Wrapper for loading templates from files"
|
||
|
from django.conf.settings import TEMPLATE_DIRS
|
||
|
from template import TemplateDoesNotExist
|
||
|
import os
|
||
|
|
||
|
TEMPLATE_FILE_EXTENSION = '.html'
|
||
|
|
||
|
def load_template_source(template_name, template_dirs=None):
|
||
|
if not template_dirs:
|
||
|
template_dirs = TEMPLATE_DIRS
|
||
|
tried = []
|
||
|
for template_dir in template_dirs:
|
||
|
filepath = os.path.join(template_dir, template_name) + TEMPLATE_FILE_EXTENSION
|
||
|
try:
|
||
|
return open(filepath).read()
|
||
|
except IOError:
|
||
|
tried.append(filepath)
|
||
|
raise TemplateDoesNotExist, str(tried)
|