models.py 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. from django import forms
  2. from django.db import models
  3. from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger
  4. from modelcluster.fields import ParentalManyToManyField
  5. from wagtail.wagtailadmin.edit_handlers import FieldPanel, MultiFieldPanel, StreamFieldPanel
  6. from wagtail.wagtailcore.fields import StreamField
  7. from wagtail.wagtailcore.models import Page
  8. from wagtail.wagtailsearch import index
  9. from wagtail.wagtailsnippets.models import register_snippet
  10. from wagtail.wagtailimages.edit_handlers import ImageChooserPanel
  11. from bakerydemo.base.blocks import BaseStreamBlock
  12. @register_snippet
  13. class Country(models.Model):
  14. """
  15. Standard Django model to store set of countries of origin.
  16. Exposed in the Wagtail admin via Snippets.
  17. """
  18. title = models.CharField(max_length=100)
  19. def __str__(self):
  20. return self.title
  21. class Meta:
  22. verbose_name_plural = "Countries of Origin"
  23. @register_snippet
  24. class BreadIngredient(models.Model):
  25. """
  26. Standard Django model used as a Snippet in the BreadPage model.
  27. Demonstrates ManyToMany relationship.
  28. """
  29. name = models.CharField(max_length=255)
  30. panels = [
  31. FieldPanel('name'),
  32. ]
  33. def __str__(self):
  34. return self.name
  35. class Meta:
  36. verbose_name_plural = 'Bread ingredients'
  37. @register_snippet
  38. class BreadType(models.Model):
  39. """
  40. Standard Django model used as a Snippet in the BreadPage model.
  41. """
  42. title = models.CharField(max_length=255)
  43. panels = [
  44. FieldPanel('title'),
  45. ]
  46. def __str__(self):
  47. return self.title
  48. class Meta:
  49. verbose_name_plural = "Bread types"
  50. class BreadPage(Page):
  51. """
  52. Detail view for a specific bread
  53. """
  54. introduction = models.TextField(
  55. help_text='Text to describe the page',
  56. blank=True)
  57. image = models.ForeignKey(
  58. 'wagtailimages.Image',
  59. null=True,
  60. blank=True,
  61. on_delete=models.SET_NULL,
  62. related_name='+',
  63. help_text='Landscape mode only; horizontal width between 1000px and 3000px.'
  64. )
  65. body = StreamField(
  66. BaseStreamBlock(), verbose_name="Page body", blank=True
  67. )
  68. origin = models.ForeignKey(
  69. Country,
  70. on_delete=models.SET_NULL,
  71. null=True,
  72. blank=True,
  73. )
  74. bread_type = models.ForeignKey(
  75. 'breads.BreadType',
  76. null=True,
  77. blank=True,
  78. on_delete=models.SET_NULL,
  79. related_name='+'
  80. )
  81. ingredients = ParentalManyToManyField('BreadIngredient', blank=True)
  82. content_panels = Page.content_panels + [
  83. FieldPanel('introduction', classname="full"),
  84. ImageChooserPanel('image'),
  85. StreamFieldPanel('body'),
  86. FieldPanel('origin'),
  87. FieldPanel('bread_type'),
  88. MultiFieldPanel(
  89. [
  90. FieldPanel(
  91. 'ingredients',
  92. widget=forms.CheckboxSelectMultiple,
  93. ),
  94. ],
  95. heading="Additional Metadata",
  96. classname="collapsible collapsed"
  97. ),
  98. ]
  99. search_fields = Page.search_fields + [
  100. index.SearchField('title'),
  101. index.SearchField('body'),
  102. ]
  103. parent_page_types = ['BreadsIndexPage']
  104. class BreadsIndexPage(Page):
  105. """
  106. Index page for breads. We don't have any fields within our model but we need
  107. to alter the page model's context to return the child page objects - the
  108. BreadPage - so that it works as an index page.
  109. """
  110. introduction = models.TextField(
  111. help_text='Text to describe the page',
  112. blank=True)
  113. image = models.ForeignKey(
  114. 'wagtailimages.Image',
  115. null=True,
  116. blank=True,
  117. on_delete=models.SET_NULL,
  118. related_name='+',
  119. help_text='Landscape mode only; horizontal width between 1000px and 3000px.'
  120. )
  121. subpage_types = ['BreadPage']
  122. def get_breads(self):
  123. return BreadPage.objects.live().descendant_of(
  124. self).order_by('-first_published_at')
  125. def children(self):
  126. return self.get_children().specific().live()
  127. def paginate(self, request, *args):
  128. page = request.GET.get('page')
  129. paginator = Paginator(self.get_breads(), 12)
  130. try:
  131. pages = paginator.page(page)
  132. except PageNotAnInteger:
  133. pages = paginator.page(1)
  134. except EmptyPage:
  135. pages = paginator.page(paginator.num_pages)
  136. return pages
  137. def get_context(self, request):
  138. context = super(BreadsIndexPage, self).get_context(request)
  139. breads = self.paginate(request, self.get_breads())
  140. context['breads'] = breads
  141. return context
  142. content_panels = Page.content_panels + [
  143. FieldPanel('introduction', classname="full"),
  144. ImageChooserPanel('image'),
  145. ]