missing import

This commit is contained in:
Thomas Steen Rasmussen 2016-05-16 21:59:54 +02:00
parent 548f052218
commit ebec7265df

View file

@ -3,7 +3,7 @@ from django.contrib import messages
from django.contrib.auth.mixins import LoginRequiredMixin
from django.core.urlresolvers import reverse_lazy
from django.db.models import Count, F
from django.http import HttpResponseRedirect, Http404
from django.http import HttpResponse, HttpResponseRedirect, Http404
from django.shortcuts import get_object_or_404
from django.views.generic import (
View,