2020-01-06 11:51:10 +00:00
|
|
|
from cms.forms import ContactForm
|
2020-01-05 02:36:23 +00:00
|
|
|
from cms.views import SectionView, SectionFormView
|
2020-01-02 19:30:24 +00:00
|
|
|
from cms.decorators import register_view
|
2020-01-02 18:32:15 +00:00
|
|
|
|
|
|
|
from .models import *
|
2020-01-05 02:36:23 +00:00
|
|
|
|
|
|
|
@register_view(TextSection)
|
|
|
|
class TextView(SectionView):
|
|
|
|
template_name = 'app/sections/text.html'
|
|
|
|
|
|
|
|
@register_view(ButtonSection)
|
|
|
|
class ButtonView(SectionView):
|
|
|
|
template_name = 'app/sections/button.html'
|
|
|
|
|
|
|
|
@register_view(ImageSection)
|
|
|
|
class ImageView(SectionView):
|
|
|
|
template_name = 'app/sections/image.html'
|
|
|
|
|
|
|
|
@register_view(VideoSection)
|
|
|
|
class VideoView(SectionView):
|
|
|
|
template_name = 'app/sections/video.html'
|
2020-01-02 18:32:15 +00:00
|
|
|
|
|
|
|
@register_view(ContactSection)
|
2020-01-05 02:36:23 +00:00
|
|
|
class ContactFormView(SectionFormView):
|
2020-01-02 18:32:15 +00:00
|
|
|
form_class = ContactForm
|
|
|
|
success_url = '/thanks/'
|
2020-01-05 02:36:23 +00:00
|
|
|
template_name = 'app/sections/contact.html'
|