1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
from django.shortcuts import render_to_response,get_object_or_404
from django.template import RequestContext
from django.views.generic.list_detail import object_list
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
"""
request.page_url = '/guide/%d/'
request.page = int(page)
qs = Guide.objects.filter(status__exact=1).order_by('-pub_date').select_related()
return object_list(request, queryset=qs, template_name='archives/guide.html', extra_context={'page':page})
def guide_list_by_location(request,location):
qs = Guide.objects.filter(location__slug__exact=location)
return object_list(request, queryset=qs, template_name='archives/writing.html')
def location_list(request):
"""
List of all locations with guides
"""
qs = Guide.objects.filter(status__exact=1).order_by('-pub_date').select_related()
return object_list(request, queryset=qs, template_name='archives/guide.html')
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))
|