Fixes #1151: name 'escape' is not defined

This commit is contained in:
Jeremy Stretch 2017-05-09 17:06:17 -04:00
parent 44d78ef92a
commit 0fb12bcc9c

View File

@ -11,6 +11,7 @@ from django.db.models import Count
from django.http import HttpResponseRedirect from django.http import HttpResponseRedirect
from django.shortcuts import get_object_or_404, redirect, render from django.shortcuts import get_object_or_404, redirect, render
from django.urls import reverse from django.urls import reverse
from django.utils.html import escape
from django.utils.http import urlencode from django.utils.http import urlencode
from django.utils.safestring import mark_safe from django.utils.safestring import mark_safe
from django.views.generic import View from django.views.generic import View