diff --git a/django/template/backends/jinja2.py b/django/template/backends/jinja2.py
index 7cdf4cd..6fb06eb 100644
a
|
b
|
from django.conf import settings
|
9 | 9 | from django.template import TemplateDoesNotExist, TemplateSyntaxError |
10 | 10 | from django.utils import six |
11 | 11 | from django.utils.module_loading import import_string |
| 12 | from django.utils.safestring import mark_safe |
12 | 13 | |
13 | 14 | from .base import BaseEngine |
14 | 15 | from .utils import csrf_input_lazy, csrf_token_lazy |
… |
… |
class Template(object):
|
68 | 69 | context['request'] = request |
69 | 70 | context['csrf_input'] = csrf_input_lazy(request) |
70 | 71 | context['csrf_token'] = csrf_token_lazy(request) |
71 | | return self.template.render(context) |
| 72 | return mark_safe(self.template.render(context)) |
72 | 73 | |
73 | 74 | |
74 | 75 | class Origin(object): |