from django.db import models from modelcluster.fields import ParentalKey from wagtail.core.models import Page, Orderable from wagtail.core.fields import RichTextField from wagtail.admin.edit_handlers import FieldPanel, InlinePanel from wagtail.images.edit_handlers import ImageChooserPanel from wagtail.search import index class ProgramPage(Page): pass class ProgramItems(Page): date = models.DateTimeField("Datum a čas projekce") place = models.CharField(max_length=64) release_date = models.DateField("Datum vydání filmu") year = models.PositiveIntegerField(blank=True) autor = models.CharField(max_length=64) country = models.CharField(max_length=64) annotation = RichTextField(blank=True) image = models.ForeignKey( 'wagtailimages.Image', on_delete=models.PROTECT, related_name='+' ) search_fields = Page.search_fields + [ index.SearchField('annotation'), ] content_panels = Page.content_panels + [ FieldPanel('date'), FieldPanel('place'), FieldPanel('release_date'), FieldPanel('year'), FieldPanel('autor'), FieldPanel('country'), FieldPanel('annotation', classname="full"), ImageChooserPanel('image'), ]