models.py 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. from __future__ import unicode_literals
  2. from django.db import models
  3. from modelcluster.fields import ParentalKey
  4. from modelcluster.contrib.taggit import ClusterTaggableManager
  5. from taggit.models import TaggedItemBase
  6. from wagtail.wagtailcore.models import Page, Orderable, Collection
  7. from wagtail.wagtailsearch import index
  8. from wagtail.wagtailimages.edit_handlers import ImageChooserPanel
  9. from wagtail.wagtailcore.fields import StreamField, RichTextField
  10. from wagtail.wagtailadmin.edit_handlers import (
  11. FieldPanel,
  12. InlinePanel,
  13. FieldRowPanel,
  14. StreamFieldPanel,
  15. MultiFieldPanel
  16. )
  17. from wagtail.wagtailsnippets.edit_handlers import SnippetChooserPanel
  18. from bakerydemo.base.blocks import BaseStreamBlock
  19. class BlogPeopleRelationship(Orderable, models.Model):
  20. """
  21. This defines the relationship between the `LocationPage` within the `locations`
  22. app and the About page below allowing us to add locations to the about
  23. section.
  24. """
  25. page = ParentalKey(
  26. 'BlogPage', related_name='blog_person_relationship'
  27. )
  28. people = models.ForeignKey(
  29. 'base.People', related_name='person_blog_relationship'
  30. )
  31. panels = [
  32. SnippetChooserPanel('people')
  33. ]
  34. class BlogPageTag(TaggedItemBase):
  35. content_object = ParentalKey('BlogPage', related_name='tagged_items')
  36. class BlogPage(Page):
  37. """
  38. The About Page
  39. """
  40. image = models.ForeignKey(
  41. 'wagtailimages.Image',
  42. null=True,
  43. blank=True,
  44. on_delete=models.SET_NULL,
  45. related_name='+',
  46. help_text='Location image'
  47. )
  48. tags = ClusterTaggableManager(through=BlogPageTag, blank=True)
  49. date_published = models.DateField("Date article published", blank=True, null=True)
  50. body = StreamField(
  51. BaseStreamBlock(), verbose_name="About page detail", blank=True
  52. )
  53. content_panels = Page.content_panels + [
  54. ImageChooserPanel('image'),
  55. StreamFieldPanel('body'),
  56. FieldPanel('date_published'),
  57. InlinePanel(
  58. 'blog_person_relationship', label="Author(s)",
  59. panels=None, min_num=1),
  60. FieldPanel('tags'),
  61. ]
  62. def authors(self):
  63. authors = [
  64. n.people for n in self.blog_person_relationship.all()
  65. ]
  66. return authors
  67. # def tags(self):
  68. # tags = self.tags.all()
  69. # return tags
  70. parent_page_types = [
  71. 'BlogIndexPage'
  72. ]
  73. # Defining what content type can sit under the parent
  74. # The empty array means that no children can be placed under the
  75. # LocationPage page model
  76. subpage_types = []
  77. # api_fields = ['image', 'body']
  78. class BlogIndexPage(Page):
  79. """
  80. """
  81. image = models.ForeignKey(
  82. 'wagtailimages.Image',
  83. null=True,
  84. blank=True,
  85. on_delete=models.SET_NULL,
  86. related_name='+',
  87. help_text='Location listing image'
  88. )
  89. introduction = models.TextField(
  90. help_text='Text to describe the index page',
  91. blank=True)
  92. content_panels = Page.content_panels + [
  93. ImageChooserPanel('image'),
  94. FieldPanel('introduction')
  95. ]
  96. # parent_page_types = [
  97. # 'home.HomePage'
  98. # ]
  99. # Defining what content type can sit under the parent. Since it's a blank
  100. # array no subpage can be added
  101. subpage_types = [
  102. 'BlogPage'
  103. ]
  104. def get_context(self, request):
  105. context = super(BlogIndexPage, self).get_context(request)
  106. context['posts'] = BlogPage.objects.descendant_of(
  107. self).live().order_by(
  108. '-first_published_at')
  109. return context
  110. # api_fields = ['introduction']