mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
673 B
Python
28 lines
673 B
Python
5 years ago
|
"""
|
||
|
Wrapper for loading templates from a plain Python dict.
|
||
|
"""
|
||
|
|
||
|
from django.template import Origin, TemplateDoesNotExist
|
||
|
|
||
|
from .base import Loader as BaseLoader
|
||
|
|
||
|
|
||
|
class Loader(BaseLoader):
|
||
|
|
||
|
def __init__(self, engine, templates_dict):
|
||
|
self.templates_dict = templates_dict
|
||
|
super().__init__(engine)
|
||
|
|
||
|
def get_contents(self, origin):
|
||
|
try:
|
||
|
return self.templates_dict[origin.name]
|
||
|
except KeyError:
|
||
|
raise TemplateDoesNotExist(origin)
|
||
|
|
||
|
def get_template_sources(self, template_name):
|
||
|
yield Origin(
|
||
|
name=template_name,
|
||
|
template_name=template_name,
|
||
|
loader=self,
|
||
|
)
|