summaryrefslogtreecommitdiff
path: root/app/sightings/views.py
blob: f23898c09f3f631518be24c63dc7db3aeac2cc7e (plain)
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
from django.views.generic.detail import DetailView
from django.contrib.auth.models import User
from utils.views import PaginatedListView
from .models import AP, Sighting 

class SightingListView(PaginatedListView):
    template_name = 'archives/sightings.html'

    def get_queryset(self):
        return Sighting.objects.all()


class SightingListUserView(PaginatedListView):
    template_name = 'archives/sightings.html'

    def get_queryset(self):
        return Sighting.objects.filter(
            seen_by__username=self.kwargs['user']
        )

    def get_context_data(self, **kwargs):
        # Call the base implementation first to get a context
        context = super(SightingListUserView, self).get_context_data(**kwargs)
        context['user'] = User.objects.get(username=self.kwargs['user'])
        return context


class SightingDetailView(DetailView):
    model = AP
    template_name = "details/sighting.html"
    slug_field = "slug"

    def get_context_data(self, **kwargs):
        # Call the base implementation first to get a context
        context = super(SightingDetailView, self).get_context_data(**kwargs)
        #try:
        #    context['recording'] = SightingAudio.objects.get(
        #        ap__slug=self.kwargs['slug']
        #    )
        #except SightingAudio.DoesNotExist:
        #    pass
        try:
            context['sighting'] = Sighting.objects.filter(
                ap__slug=self.kwargs['slug']
            )
        except Sighting.DoesNotExist:
            pass
        return context