123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- from django.db import models
- from wagtail.wagtailadmin.edit_handlers import FieldPanel, StreamFieldPanel
- from wagtail.wagtailcore.fields import StreamField
- from wagtail.wagtailcore.models import Page
- from wagtail.wagtailcore import blocks
- from wagtail.wagtailimages.edit_handlers import ImageChooserPanel
- from wagtail.wagtailsearch import index
- from wagtail.wagtailsnippets.models import register_snippet
- @register_snippet
- class Country(models.Model):
- '''
- Standard Django model to store set of countries of origin.
- Exposed in the Wagtail admin via Snippets.
- '''
- title = models.CharField(max_length=100)
- def __str__(self):
- return self.title
- class Meta:
- verbose_name_plural = "Countries of Origin"
- @register_snippet
- class BreadType(models.Model):
- '''
- Standard Django model used as a Snippet in the BreadPage model.
- '''
- title = models.CharField(max_length=255)
- panels = [
- FieldPanel('title'),
- ]
- def __str__(self):
- return self.title
- class Meta:
- verbose_name_plural = "Bread types"
- class BreadPage(Page):
- '''
- Detail view for a specific bread
- '''
- origin = models.ForeignKey(
- Country,
- on_delete=models.SET_NULL,
- null=True,
- blank=True,
- )
- description = StreamField([
- ('heading', blocks.CharBlock(classname="full title")),
- ('paragraph', blocks.RichTextBlock()),
- ])
- bread_type = models.ForeignKey(
- 'breads.BreadType',
- null=True,
- blank=True,
- on_delete=models.SET_NULL,
- related_name='+'
- )
- image = models.ForeignKey(
- 'wagtailimages.Image',
- on_delete=models.SET_NULL,
- null=True,
- blank=True,
- related_name='+',
- help_text='Landscape mode only; horizontal width between 1000px and 3000px.'
- )
- content_panels = [
- FieldPanel('title'),
- FieldPanel('origin'),
- FieldPanel('bread_type'),
- ImageChooserPanel('image'),
- StreamFieldPanel('description'),
- ]
- search_fields = Page.search_fields + [
- index.SearchField('title'),
- index.SearchField('description'),
- ]
- parent_page_types = ['BreadsIndexPage']
- class BreadsIndexPage(Page):
- '''
- Index page for breads. We don't have any fields within our model but we need
- to alter the page model's context to return the child page objects - the
- BreadPage - so that it works as an index page
- '''
- subpage_types = ['BreadPage']
- def get_context(self, request):
- context = super(BreadsIndexPage, self).get_context(request)
- context['breads'] = BreadPage.objects.descendant_of(
- self).live().order_by(
- '-first_published_at')
- return context
|