fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
infopage blog
[wolnelektury.git]
/
src
/
funding
/
views.py
diff --git
a/src/funding/views.py
b/src/funding/views.py
index
d34eccc
..
9b43780
100644
(file)
--- a/
src/funding/views.py
+++ b/
src/funding/views.py
@@
-1,5
+1,5
@@
-# This file is part of Wolne
l
ektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja
Nowoczesna Polska
. See NOTICE for more information.
+# This file is part of Wolne
L
ektury, 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
#
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
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):
@csrf_exempt
def dispatch(self, request, slug=None):
@@
-126,7
+121,8
@@
class CurrentView(OfferDetailView):
class OfferListView(ListView):
queryset = Offer.public()
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
def get_context_data(self, **kwargs):
ctx = super(OfferListView, self).get_context_data(**kwargs)
ctx['funding_no_show_current'] = True