bornhack-website/src/camps/views.py

42 lines
1.5 KiB
Python
Raw Normal View History

from django.views.generic import ListView, DetailView
from django.utils import timezone
from .models import *
2017-02-19 20:20:19 +00:00
from django.shortcuts import redirect
from .mixins import CampViewMixin
from django.views import View
from django.conf import settings
class CampRedirectView(CampViewMixin, View):
def dispatch(self, request, *args, **kwargs):
# find the closest camp in the past
prevcamp = Camp.objects.filter(camp__endswith__lt=timezone.now()).order_by('-camp')[0]
# find the closest upcoming camp
nextcamp = Camp.objects.filter(camp__startswith__gt=timezone.now()).order_by('camp')[0]
# find the number of days between the two camps
daysbetween = (nextcamp.camp.lower - prevcamp.camp.upper).days
# find the number of days since the last camp ended
dayssinceprevcamp = (timezone.now() - prevcamp.camp.lower).days
# find the percentage of time passed
percentpassed = (dayssinceprevcamp / daysbetween) * 100
print(daysbetween, dayssinceprevcamp, percentpassed)
# do the redirect
if percentpassed > settings.CAMP_REDIRECT_PERCENT:
return redirect(kwargs['page'], camp_slug=nextcamp.slug)
else:
return redirect(kwargs['page'], camp_slug=prevcamp.slug)
2015-10-03 01:07:05 +00:00
class CampDetailView(DetailView):
model = Camp
slug_url_kwarg = 'camp_slug'
def get_template_names(self):
return '%s_camp_detail.html' % self.get_object().slug
2017-01-25 00:49:13 +00:00
class CampListView(ListView):
model = Camp
template_name = 'camp_list.html'