I am storing my templates in the database and I don\'t have any path to provide for the template.render method.
template.render
Is there any exposed method which accepts th
In Django < 1.8:
from django.template.loader import get_template_from_string tpl = Template(get_template_from_string("My name is {{ my_name }}."))