Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def setUp(self):
self.home_page = Page.objects.get(id=2)
events_page = self.home_page.add_child(instance=Page(title='Events', live=True))
second_site = Site.objects.create(
hostname='events.local',
port=80,
root_page=events_page,
)
self.routable_page = self.home_page.add_child(instance=RoutablePageTest(
title="Routable Page",
live=True,
))
self.rf = RequestFactory()
self.request = self.rf.get(self.routable_page.url)
self.request.site = Site.find_for_request(self.request)
self.context = {'request': self.request}
[
('title', blocks.CharBlock(required=True)),
('pic', ImageChooserBlock(required=True)),
('description', blocks.RichTextBlock(required=True)),
],
template='blocks/medailon.html',
icon='user'
))
])
content_panels = Page.content_panels + [
StreamFieldPanel('body'),
]
class PomahejPage(Page):
body = StreamField([
('heading', blocks.CharBlock(classname="full title")),
('paragraph', blocks.RichTextBlock()),
('image', ImageChooserBlock()),
('embed', EmbedBlock()),
('rawHtml', blocks.RawHTMLBlock()),
('medailon', blocks.StructBlock(
[
('title', blocks.CharBlock(required=True)),
('pic', ImageChooserBlock(required=True)),
('description', blocks.RichTextBlock(required=True)),
],
template='blocks/medailon.html',
icon='user'
))
])
]
VideoGalleryPage.content_panels = [
FieldPanel('title', classname="full title"),
FieldPanel('intro', classname="full"),
InlinePanel('carousel_items', label="Carousel items"),
]
VideoGalleryPage.promote_panels = Page.promote_panels + [
ImageChooserPanel('feed_image'),
]
class TestimonialPage(Page):
intro = RichTextField(blank=True)
feed_image = models.ForeignKey(
Image,
null=True,
blank=True,
on_delete=models.SET_NULL,
related_name='+'
)
search_fields = Page.search_fields + [
index.SearchField('intro'),
]
TestimonialPage.content_panels = [
FieldPanel('title', classname="full title"),
class ParticipateHighlights(ParticipateHighlightsBase):
page = ParentalKey(
'wagtailpages.ParticipatePage2',
related_name='featured_highlights',
)
class ParticipateHighlights2(ParticipateHighlightsBase):
page = ParentalKey(
'wagtailpages.ParticipatePage2',
related_name='featured_highlights2',
)
class Homepage(FoundationMetadataPageMixin, Page):
hero_headline = models.CharField(
max_length=140,
help_text='Hero story headline',
blank=True,
)
hero_story_description = RichTextField(
features=[
'bold', 'italic', 'link',
]
)
hero_image = models.ForeignKey(
'wagtailimages.Image',
null=True,
blank=True,
from wagtail.admin.edit_handlers import (
FieldPanel, InlinePanel, StreamFieldPanel, MultiFieldPanel,
)
from modelcluster.fields import ParentalKey
from modelcluster.tags import ClusterTaggableManager
from taggit.models import TaggedItemBase
from bs4 import BeautifulSoup
from utils.models import RelatedLink, CarouselItem
class BlogIndexPageRelatedLink(Orderable, RelatedLink):
page = ParentalKey('blog.BlogIndexPage', related_name='related_links')
class BlogIndexPage(Page):
intro = RichTextField(blank=True)
feed_image = models.ForeignKey(
'wagtailimages.Image',
null=True,
blank=True,
on_delete=models.SET_NULL,
related_name='+'
)
search_fields = Page.search_fields + [
index.SearchField('intro'),
]
@property
def blogs(self):
# Get list of live blog pages that are descendants of this page
blogs = BlogPage.objects.live().descendant_of(self)
from wagtail.core.fields import StreamField
from wagtail.core.models import Page
class AppChooserblock(blocks.ChooserBlock):
target_model = App
widget = forms.Select
def value_for_form(self, value):
if isinstance(value, self.target_model):
return value.pk
else:
return value
class AppsPage(Page):
heading = models.CharField(max_length=255, blank=False, null=False, default="Apps")
abstract = models.TextField(blank=True, null=True)
apps = StreamField(
[('apps', AppChooserblock(required=True),)], blank=True
)
content_panels = Page.content_panels + [
FieldPanel('heading'),
FieldPanel('abstract', classname="full"),
StreamFieldPanel('apps'),
]
@property
def apps_list(self):
apps = [app.value for app in self.apps]
if len(apps) == 0:
apps = App.objects.all()
return apps
from wagtail.admin.edit_handlers import FieldPanel, StreamFieldPanel
from wagtail.core import blocks
from wagtail.core.fields import StreamField
from wagtail.core.models import Page
from wagtailbakery.models import AutoPublishingWagtailBakeryModel
class AbstractExamplePage(Page, AutoPublishingWagtailBakeryModel):
body = StreamField([
('paragraph', blocks.RichTextBlock())
])
content_panels = [
FieldPanel('title'),
StreamFieldPanel('body')
]
class Meta:
abstract = True
class HomePage(AbstractExamplePage):
pass
null=True,
blank=False,
on_delete=models.SET_NULL,
related_name="+",
)
panels = [
ImageChooserPanel("carousel_image")
]
api_fields = [
APIField("carousel_image"),
]
class HomePage(RoutablePageMixin, Page):
"""Home page model."""
template = "home/home_page.html"
subpage_types = [
'blog.BlogListingPage',
'contact.ContactPage',
'flex.FlexPage',
]
parent_page_type = [
'wagtailcore.Page'
]
banner_title = models.CharField(max_length=100, blank=False, null=True)
banner_subtitle = RichTextField(features=["bold", "italic"])
banner_image = models.ForeignKey(
"wagtailimages.Image",