from django.views.generic.detail import DetailView from django.views.generic import ListView from django.contrib.auth.models import User from utils.views import PaginatedListView from .models import AP, Sighting, FieldNote class SightingListView(PaginatedListView): def get_queryset(self): qs_ids = Sighting.objects.order_by('ap__id', '-pub_date').distinct('ap').values_list('id', flat=True) return Sighting.objects.filter(id__in=qs_ids).order_by('-pub_date').prefetch_related('ap') class LifeListView(ListView): template_name = 'archives/life-list.html' def get_queryset(self): return Sighting.objects.filter(ap__apclass__kind=1).order_by('ap__id').distinct('ap') 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 def get_context_data(self, **kwargs): # Call the base implementation first to get a context context = super(SightingDetailView, self).get_context_data(**kwargs) context['field_notes'] = FieldNote.objects.filter( sighting__ap__slug=self.kwargs['slug'] ) context['sighting'] = Sighting.objects.filter( ap__slug=self.kwargs['slug'] ).prefetch_related('location') #try: # context['recording'] = SightingAudio.objects.get( # ap__slug=self.kwargs['slug'] # ) #except SightingAudio.DoesNotExist: # pass return context