Merge pull request #29 from oxys-net/798d20da3d4fa922358b1dfd632a63f5a95aa213

missing imports on views.py
This commit is contained in:
Corey Oordt 2012-01-03 05:50:40 -08:00
commit a9d207cbb8

View file

@ -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