summaryrefslogtreecommitdiff
path: root/app/guide/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/guide/views.py')
-rw-r--r--app/guide/views.py36
1 files changed, 15 insertions, 21 deletions
diff --git a/app/guide/views.py b/app/guide/views.py
index 50a42d2..c22a6b3 100644
--- a/app/guide/views.py
+++ b/app/guide/views.py
@@ -1,33 +1,30 @@
-from django.shortcuts import render_to_response,get_object_or_404
+from django.shortcuts import render_to_response, get_object_or_404
from django.template import RequestContext
-from django.core.exceptions import ObjectDoesNotExist
from guide.models import Guide
-from locations.models import Location
-def guide_list(request,page):
- """
- List of all guides
- """
+
+def guide_list(request, page):
+ """List of all guides"""
request.page_url = "/guide/%d/"
request.page = int(page)
- context={
- 'object_list':Guide.objects.filter(status__exact=1).order_by('-pub_date').select_related(),
- 'page':page,
- }
+ context = {
+ 'object_list': Guide.objects.filter(status__exact=1).order_by('-pub_date').select_related(),
+ 'page': page,
+ }
return render_to_response("archives/guide.html", context, context_instance=RequestContext(request))
-def guide_list_by_location(request,location):
- context={
+
+def guide_list_by_location(request, location):
+ context = {
"object_list": Guide.objects.filter(location__slug__exact=location),
}
return render_to_response("archives/guide.html", context, context_instance=RequestContext(request))
+
def location_list(request):
- """
- List of all locations with guides
- """
- context={
+ """List of all locations with guides"""
+ context = {
"object_list": Guide.objects.filter(status__exact=1).order_by('-pub_date').select_related()
}
return render_to_response("archives/guide.html", context, context_instance=RequestContext(request))
@@ -35,7 +32,4 @@ def location_list(request):
def guide_detail(request, slug, location=None):
obj = get_object_or_404(Guide, slug__exact=slug)
- return render_to_response('details/guide.html', {'object': obj,}, context_instance=RequestContext(request))
-
-
-
+ return render_to_response('details/guide.html', {'object': obj}, context_instance=RequestContext(request))