diff options
Diffstat (limited to 'chimere/views.py')
-rw-r--r-- | chimere/views.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chimere/views.py b/chimere/views.py index 24948ad..90fa821 100644 --- a/chimere/views.py +++ b/chimere/views.py @@ -24,16 +24,16 @@ Views of the project import datetime from itertools import groupby -from django.utils.translation import ugettext as _ -from django.shortcuts import render_to_response -from django.template import loader -from django.http import HttpResponseRedirect, HttpResponse +from django.conf import settings from django.core import serializers -from django.utils.http import urlquote from django.db.models import Q +from django.http import HttpResponseRedirect, HttpResponse +from django.shortcuts import render_to_response +from django.template import loader from django.utils import simplejson +from django.utils.http import urlquote +from django.utils.translation import ugettext as _ -from chimere import settings from chimere.actions import actions from chimere.models import Category, SubCategory, PropertyModel, \ Marker, Route, News, SimpleArea, Area, Color, TinyUrl, RouteFile |