X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/150c16b9cecccacdbf17360d334fc618172f4179..9bc86f5a6542c5893ac94284da33162a7c7be2d6:/src/funding/views.py diff --git a/src/funding/views.py b/src/funding/views.py index d34eccc00..315c3da49 100644 --- a/src/funding/views.py +++ b/src/funding/views.py @@ -71,12 +71,7 @@ class WLFundView(TemplateView): class OfferDetailView(FormView): form_class = FundingForm - - def get_template_names(self): - if self.request.EXPERIMENTS['layout'].value: - return 'funding/2022/offer_detail.html' - else: - return "funding/offer_detail.html" + template_name = 'funding/offer_detail.html' @csrf_exempt def dispatch(self, request, slug=None): @@ -126,7 +121,8 @@ class CurrentView(OfferDetailView): class OfferListView(ListView): queryset = Offer.public() - + template_name = 'funding/offer_list.html' + def get_context_data(self, **kwargs): ctx = super(OfferListView, self).get_context_data(**kwargs) ctx['funding_no_show_current'] = True