diff --git a/django/template/backends/jinja2.py b/django/template/backends/jinja2.py
index 7cdf4cd..6fb06eb 100644
--- a/django/template/backends/jinja2.py
+++ b/django/template/backends/jinja2.py
@@ -9,6 +9,7 @@ from django.conf import settings
 from django.template import TemplateDoesNotExist, TemplateSyntaxError
 from django.utils import six
 from django.utils.module_loading import import_string
+from django.utils.safestring import mark_safe
 
 from .base import BaseEngine
 from .utils import csrf_input_lazy, csrf_token_lazy
@@ -68,7 +69,7 @@ class Template(object):
             context['request'] = request
             context['csrf_input'] = csrf_input_lazy(request)
             context['csrf_token'] = csrf_token_lazy(request)
-        return self.template.render(context)
+        return mark_safe(self.template.render(context))
 
 
 class Origin(object):
