Leaflet outside of pipeline b/c of paths.
[wolnelektury.git] / src / funding / views.py
index 71373ae..6df231d 100644 (file)
@@ -71,7 +71,12 @@ class WLFundView(TemplateView):
 
 class OfferDetailView(FormView):
     form_class = FundingForm
-    template_name = "funding/offer_detail.html"
+
+    def get_template_names(self):
+        if self.request.EXPERIMENTS['layout'].value:
+            return 'funding/2022/offer_detail.html'
+        else:
+            return "funding/offer_detail.html"
 
     @csrf_exempt
     def dispatch(self, request, slug=None):
@@ -122,6 +127,11 @@ class CurrentView(OfferDetailView):
 class OfferListView(ListView):
     queryset = Offer.public()
 
+    def get_template_names(self):
+        if self.request.EXPERIMENTS['layout'].value:
+            return 'funding/2022/offer_list.html'
+        return 'funding/offer_list.html'
+    
     def get_context_data(self, **kwargs):
         ctx = super(OfferListView, self).get_context_data(**kwargs)
         ctx['funding_no_show_current'] = True