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):
|
2016-12-28 23:15:13 +00:00
|
|
|
return '%s-sponsors.html' % self.camp.slug
|
|
|
|
|
|
|
|
|
2017-01-29 13:51:50 +00:00
|
|
|
class CallForSponsorsView(CampViewMixin, TemplateView):
|
|
|
|
def get_template_names(self):
|
|
|
|
return '%s-call-for-sponsors.html' % self.camp.slug
|
|
|
|
|
|
|
|
|