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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
from django.shortcuts import render_to_response
from django.template import RequestContext
from jrnl.models import Entry
from locations.models import Country, Region, Route
from projects.shortcuts import render_to_geojson
from django.views.generic import ListView
from django.conf import settings
def map_list(request):
context = {
'object_list': Entry.objects.filter(status__exact=1),
'country_list': Country.objects.filter(visited=True).exclude(name='default'),
'route_list': Route.objects.all(),
'region_list': Region.objects.all()
}
return render_to_response(
'archives/map.html',
context,
context_instance=RequestContext(request)
)
class MapList(ListView):
"""
Return list of Entries on map
"""
context_object_name = 'object_list'
queryset = Entry.objects.filter(status__exact=1)
template_name = 'archives/map.html'
def get_context_data(self, **kwargs):
# Call the base implementation first to get a context
context = super(MapList, self).get_context_data(**kwargs)
context['country_list'] = Country.objects.filter(visited=True).exclude(name='default'),
context['route_list'] = Route.objects.all(),
context['region_list'] = Region.objects.all()
context['IMAGES_URL'] = settings.IMAGES_URL
return context
class MapDataList(ListView):
"""
Build data file for Entries on map
"""
context_object_name = 'object_list'
queryset = Entry.objects.filter(status__exact=1)
template_name = 'archives/map_data.html'
def get_context_data(self, **kwargs):
# Call the base implementation first to get a context
context = super(MapDataList, self).get_context_data(**kwargs)
context['country_list'] = Country.objects.filter(visited=True).exclude(name='default'),
context['route_list'] = Route.objects.all(),
context['region_list'] = Region.objects.all()
context['IMAGES_URL'] = settings.IMAGES_URL
return context
def map_data(request):
context = {
'object_list': Entry.objects.filter(status__exact=1),
'route_list': Route.objects.all(),
'country_list': Country.objects.filter(visited=True).exclude(name='default'),
'region_list': Region.objects.all()
}
return render_to_response(
'archives/map_data.html',
context,
context_instance=RequestContext(request)
)
def data_json(request, id):
qs = Route.objects.filter(pk=id)
return render_to_geojson(
qs,
included_fields=['id', ],
geom_attribute='geometry',
mimetype='application/json',
pretty_print=True
)
|