X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/149ca28f533a257ed8034f88a615c8d7abbc9f69..7226da0450b08dd90714bd8e78cfe4920848415b:/src/funding/views.py?ds=sidebyside

diff --git a/src/funding/views.py b/src/funding/views.py
index 6df231dfd..9b4378062 100644
--- a/src/funding/views.py
+++ b/src/funding/views.py
@@ -1,5 +1,5 @@
-# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
 #
 from django.http import Http404, HttpResponseRedirect
 from django.shortcuts import get_object_or_404, redirect, render
@@ -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,11 +121,7 @@ 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'
+    template_name = 'funding/offer_list.html'
     
     def get_context_data(self, **kwargs):
         ctx = super(OfferListView, self).get_context_data(**kwargs)