models.py 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. from django.db import models
  2. from wagtail.wagtailadmin.edit_handlers import FieldPanel, StreamFieldPanel
  3. from wagtail.wagtailcore.fields import StreamField
  4. from wagtail.wagtailcore.models import Page
  5. from wagtail.wagtailcore import blocks
  6. from wagtail.wagtailimages.edit_handlers import ImageChooserPanel
  7. from wagtail.wagtailsearch import index
  8. from wagtail.wagtailsnippets.models import register_snippet
  9. @register_snippet
  10. class Country(models.Model):
  11. '''
  12. Standard Django model to store set of countries of origin.
  13. Exposed in the Wagtail admin via Snippets.
  14. '''
  15. title = models.CharField(max_length=100)
  16. def __str__(self):
  17. return self.title
  18. class Meta:
  19. verbose_name_plural = "Countries of Origin"
  20. @register_snippet
  21. class BreadType(models.Model):
  22. '''
  23. Standard Django model used as a Snippet in the BreadPage model.
  24. '''
  25. title = models.CharField(max_length=255)
  26. panels = [
  27. FieldPanel('title'),
  28. ]
  29. def __str__(self):
  30. return self.title
  31. class Meta:
  32. verbose_name_plural = "Bread types"
  33. class BreadPage(Page):
  34. '''
  35. Detail view for a specific bread
  36. '''
  37. origin = models.ForeignKey(
  38. Country,
  39. on_delete=models.SET_NULL,
  40. null=True,
  41. blank=True,
  42. )
  43. description = StreamField([
  44. ('heading', blocks.CharBlock(classname="full title")),
  45. ('paragraph', blocks.RichTextBlock()),
  46. ])
  47. bread_type = models.ForeignKey(
  48. 'breads.BreadType',
  49. null=True,
  50. blank=True,
  51. on_delete=models.SET_NULL,
  52. related_name='+'
  53. )
  54. image = models.ForeignKey(
  55. 'wagtailimages.Image',
  56. on_delete=models.SET_NULL,
  57. null=True,
  58. blank=True,
  59. related_name='+',
  60. help_text='Landscape mode only; horizontal width between 1000px and 3000px.'
  61. )
  62. content_panels = [
  63. FieldPanel('title'),
  64. FieldPanel('origin'),
  65. FieldPanel('bread_type'),
  66. ImageChooserPanel('image'),
  67. StreamFieldPanel('description'),
  68. ]
  69. search_fields = Page.search_fields + [
  70. index.SearchField('title'),
  71. index.SearchField('description'),
  72. ]
  73. parent_page_types = ['BreadsIndexPage']
  74. class BreadsIndexPage(Page):
  75. '''
  76. Index page for breads. We don't have any fields within our model but we need
  77. to alter the page model's context to return the child page objects - the
  78. BreadPage - so that it works as an index page
  79. '''
  80. subpage_types = ['BreadPage']
  81. def get_context(self, request):
  82. context = super(BreadsIndexPage, self).get_context(request)
  83. context['breads'] = BreadPage.objects.descendant_of(
  84. self).live().order_by(
  85. '-first_published_at')
  86. return context