diff --git a/dnscms/associations/models.py b/dnscms/associations/models.py index e971dda..ba13ec8 100644 --- a/dnscms/associations/models.py +++ b/dnscms/associations/models.py @@ -20,7 +20,7 @@ class AssociationIndex(Page): max_count = 1 subpage_types = ["associations.AssociationPage"] - lead = RichTextField(features=["bold", "italic", "link"]) + lead = RichTextField(features=["italic", "link"]) body = CommonStreamField diff --git a/dnscms/contacts/models.py b/dnscms/contacts/models.py index 7e206d3..2873308 100644 --- a/dnscms/contacts/models.py +++ b/dnscms/contacts/models.py @@ -26,7 +26,7 @@ class ContactIndex(Page): max_count = 1 subpage_types = [] - lead = RichTextField(features=["bold", "italic", "link"], blank=True) + lead = RichTextField(features=["italic", "link"], blank=True) body = StreamField( BASE_BLOCKS + [("contact_section", ContactSectionBlock(label="Kontaktseksjon"))] ) diff --git a/dnscms/generic/models.py b/dnscms/generic/models.py index b20255e..ef48414 100644 --- a/dnscms/generic/models.py +++ b/dnscms/generic/models.py @@ -12,7 +12,7 @@ class GenericPage(Page): subpage_types = ["generic.GenericPage"] show_in_menus = True - lead = RichTextField(features=["bold", "italic", "link"]) + lead = RichTextField(features=["link"]) body = StreamField(BASE_BLOCKS + [("page_section", PageSectionBlock())]) content_panels = Page.content_panels + [ diff --git a/dnscms/news/models.py b/dnscms/news/models.py index 7deb86e..d3aca19 100644 --- a/dnscms/news/models.py +++ b/dnscms/news/models.py @@ -15,7 +15,7 @@ class NewsIndex(Page): max_count = 1 subpage_types = ["news.NewsPage"] - lead = RichTextField(features=["bold", "italic", "link"], blank=True) + lead = RichTextField(features=["italic", "link"], blank=True) content_panels = Page.content_panels + [ FieldPanel("lead", heading="Ingress"), @@ -34,7 +34,7 @@ class NewsPage(WPImportedPageMixin, Page): show_in_menus = False excerpt = models.TextField(max_length=512, blank=False) - lead = RichTextField(features=["bold", "italic", "link"], blank=True) + lead = RichTextField(features=["italic", "link"], blank=True) body = CommonStreamField featured_image = models.ForeignKey( "images.CustomImage", diff --git a/dnscms/venues/models.py b/dnscms/venues/models.py index 47a2334..59716c5 100644 --- a/dnscms/venues/models.py +++ b/dnscms/venues/models.py @@ -22,7 +22,7 @@ class VenueIndex(Page): max_count = 1 subpage_types = ["venues.VenuePage"] - lead = RichTextField(features=["bold", "italic", "link"], blank=True) + lead = RichTextField(features=["italic", "link"], blank=True) body = CommonStreamField content_panels = Page.content_panels + [ @@ -39,7 +39,7 @@ class VenueRentalIndex(Page): max_count = 1 subpage_types = [] - lead = RichTextField(features=["bold", "italic", "link"], blank=True) + lead = RichTextField(features=["italic", "link"], blank=True) body = CommonStreamField content_panels = Page.content_panels + [