added colors
This commit is contained in:
@@ -5,48 +5,50 @@ from wagtail.fields import RichTextField
|
||||
from wagtail.admin.panels import FieldPanel, MultiFieldPanel
|
||||
from wagtail.models import Page
|
||||
|
||||
from saburly.custom_editor import FULL_EDITOR
|
||||
|
||||
class ServicesPage(Page):
|
||||
section_one_title = RichTextField(blank=True)
|
||||
section_one_text = RichTextField(blank=True)
|
||||
section_one_img = RichTextField(blank=True)
|
||||
section_one_title = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
section_one_text = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
section_one_img = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
|
||||
|
||||
section_two_title = RichTextField(blank=True)
|
||||
section_two_text = RichTextField(blank=True)
|
||||
section_two_img = RichTextField(blank=True)
|
||||
section_two_title = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
section_two_text = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
section_two_img = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
|
||||
section_three_title = RichTextField(blank=True)
|
||||
section_three_text = RichTextField(blank=True)
|
||||
section_three_img = RichTextField(blank=True)
|
||||
section_three_title = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
section_three_text = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
section_three_img = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
|
||||
|
||||
section_four_title = RichTextField(blank=True)
|
||||
section_four_text = RichTextField(blank=True)
|
||||
section_four_img = RichTextField(blank=True)
|
||||
section_four_title = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
section_four_text = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
section_four_img = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
|
||||
|
||||
section_five_title = RichTextField(blank=True)
|
||||
section_five_text = RichTextField(blank=True)
|
||||
section_five_img = RichTextField(blank=True)
|
||||
section_five_title = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
section_five_text = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
section_five_img = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
|
||||
|
||||
sub_section_one = RichTextField(blank=True)
|
||||
sub_section_one_img = RichTextField(blank=True)
|
||||
sub_section_one = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
sub_section_one_img = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
|
||||
sub_section_two = RichTextField(blank=True)
|
||||
sub_section_two_img = RichTextField(blank=True)
|
||||
sub_section_two = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
sub_section_two_img = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
|
||||
sub_section_three = RichTextField(blank=True)
|
||||
sub_section_three_img = RichTextField(blank=True)
|
||||
sub_section_three = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
sub_section_three_img = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
|
||||
sub_section_four = RichTextField(blank=True)
|
||||
sub_section_four_img = RichTextField(blank=True)
|
||||
sub_section_four = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
sub_section_four_img = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
|
||||
sub_section_five = RichTextField(blank=True)
|
||||
sub_section_five_img = RichTextField(blank=True)
|
||||
sub_section_five = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
sub_section_five_img = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
|
||||
sub_section_six = RichTextField(blank=True)
|
||||
sub_section_six_img = RichTextField(blank=True)
|
||||
sub_section_six = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
sub_section_six_img = RichTextField(blank=True, features=FULL_EDITOR)
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user