2016-12-28 23:15:13 +00:00
|
|
|
from django.views.generic import TemplateView
|
|
|
|
from camps.mixins import CampViewMixin
|
|
|
|
|
|
|
|
|
2017-01-29 13:51:50 +00:00
|
|
|
class SponsorsView(CampViewMixin, TemplateView):
|
2017-01-24 23:24:04 +00:00
|
|
|
def get_template_names(self):
|
2017-06-04 11:05:59 +00:00
|
|
|
return '%s_sponsors.html' % self.camp.slug
|
2016-12-28 23:15:13 +00:00
|
|
|
|
|
|
|
|
2017-01-29 13:51:50 +00:00
|
|
|
class CallForSponsorsView(CampViewMixin, TemplateView):
|
|
|
|
def get_template_names(self):
|
2017-06-04 11:05:59 +00:00
|
|
|
return '%s_call_for_sponsors.html' % self.camp.slug
|