mirror of
https://github.com/jazzband/django-categories.git
synced 2026-03-16 22:30:24 +00:00
fix missing imports
This commit is contained in:
parent
7fb092f931
commit
798d20da3d
1 changed files with 3 additions and 0 deletions
|
|
@ -1,9 +1,12 @@
|
|||
import django
|
||||
from django.shortcuts import get_object_or_404
|
||||
from django.core.exceptions import ObjectDoesNotExist
|
||||
from django.template import RequestContext
|
||||
from django.http import HttpResponse, Http404
|
||||
from django.views.decorators.cache import cache_page
|
||||
from django.template.loader import select_template
|
||||
from django.utils.translation import ugettext as _
|
||||
|
||||
from categories.models import Category
|
||||
from settings import CACHE_VIEW_LENGTH
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue