+ ctx['log'] = add_total(amount, mix(
+ (offers, lambda x: x.end, 'offer'),
+ (Spent.objects.all(), lambda x: x.timestamp, 'spent'),
+ ))
+ return ctx
+
+
+class OfferDetailView(FormView):
+ form_class = DummyForm
+ template_name = "funding/offer_detail.html"
+
+ def dispatch(self, request, slug=None):
+ if slug:
+ self.object = get_object_or_404(Offer.public(), slug=slug)
+ else:
+ self.object = Offer.current()
+ if self.object is None:
+ raise Http404
+ return super(OfferDetailView, self).dispatch(request, slug)
+
+ def get_form(self, form_class):
+ if self.request.method == 'POST':
+ return form_class(self.object, self.request.POST)
+ else:
+ return form_class(self.object, initial={'amount': settings.FUNDING_DEFAULT})
+
+ def get_context_data(self, *args, **kwargs):
+ ctx = super(OfferDetailView, self).get_context_data(*args, **kwargs)
+ ctx['object'] = self.object
+ if self.object.is_current():
+ ctx['funding_no_show_current'] = True
+ ctx['payment_form'] = PaymentMethodForm('PLN', initial={'order': self.object})
+ return ctx
+
+ def form_valid(self, form):
+ funding = form.save()
+ return redirect(funding.get_absolute_url())
+
+
+class OfferListView(ListView):
+ queryset = Offer.public()
+
+ def get_context_data(self, *args, **kwargs):
+ ctx = super(OfferListView, self).get_context_data(*args, **kwargs)
+ ctx['funding_no_show_current'] = True
+ return ctx
+
+
+class FundingView(DetailView):
+ model = Funding
+
+ @method_decorator(never_cache)
+ def dispatch(self, *args, **kwargs):
+ return super(FundingView, self).dispatch(*args, **kwargs)
+
+ def get_context_data(self, *args, **kwargs):
+ ctx = super(FundingView, self).get_context_data(*args, **kwargs)
+ if self.object.offer.is_current():
+ ctx['funding_no_show_current'] = True
+ ctx['payment_form'] = PaymentMethodForm('PLN', initial={'order': self.object})