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
Based on the the docs for using the template system:
from django.template import Template, Context t = Template("My name is {{ my_name }}.") c = Context({"my_name": "Adrian"}) t.render(c)