models.py 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. from __future__ import unicode_literals
  2. from django.db import models
  3. from modelcluster.fields import ParentalKey
  4. from modelcluster.models import ClusterableModel
  5. from wagtail.wagtailadmin.edit_handlers import (
  6. FieldPanel, FieldRowPanel, InlinePanel, MultiFieldPanel,
  7. PageChooserPanel, StreamFieldPanel,
  8. )
  9. from wagtail.contrib.modeladmin.options import (
  10. ModelAdmin, ModelAdminGroup, modeladmin_register)
  11. from wagtail.wagtailcore.fields import RichTextField, StreamField
  12. from wagtail.wagtailcore.models import Collection, Orderable, Page
  13. from wagtail.wagtailforms.models import AbstractEmailForm, AbstractFormField
  14. from wagtail.wagtailimages.edit_handlers import ImageChooserPanel
  15. from wagtail.wagtailsearch import index
  16. from wagtail.wagtailsnippets.models import register_snippet
  17. from .blocks import BaseStreamBlock
  18. @register_snippet
  19. class People(ClusterableModel):
  20. first_name = models.CharField("First name", max_length=254)
  21. last_name = models.CharField("Last name", max_length=254)
  22. job_title = models.CharField("Job title", max_length=254)
  23. image = models.ForeignKey(
  24. 'wagtailimages.Image',
  25. null=True,
  26. blank=True,
  27. on_delete=models.SET_NULL,
  28. related_name='+'
  29. )
  30. panels = [
  31. FieldPanel('first_name', classname="col6"),
  32. FieldPanel('last_name', classname="col6"),
  33. FieldPanel('job_title'),
  34. ImageChooserPanel('image')
  35. ]
  36. search_fields = Page.search_fields + [
  37. index.SearchField('first_name'),
  38. index.SearchField('last_name'),
  39. ]
  40. @property
  41. def thumb_image(self):
  42. # fail silently if there is no profile pic or the rendition file can't
  43. # be found. Note @richbrennan worked out how to do this...
  44. try:
  45. return self.image.get_rendition('fill-50x50').img_tag()
  46. except:
  47. return ''
  48. def __str__(self):
  49. return '{} {}'.format(self.first_name, self.last_name)
  50. class Meta:
  51. verbose_name = 'Person'
  52. verbose_name_plural = 'People'
  53. class AboutLocationRelationship(Orderable, models.Model):
  54. """
  55. This defines the relationship between the `LocationPage` within the `locations`
  56. app and the About page below allowing us to add locations to the about
  57. section.
  58. """
  59. page = ParentalKey(
  60. 'AboutPage', related_name='location_about_relationship'
  61. )
  62. locations = models.ForeignKey(
  63. 'locations.LocationPage', related_name='about_location_relationship'
  64. )
  65. panels = [
  66. PageChooserPanel('locations')
  67. ]
  68. class AboutPage(Page):
  69. """
  70. The About Page
  71. """
  72. image = models.ForeignKey(
  73. 'wagtailimages.Image',
  74. null=True,
  75. blank=True,
  76. on_delete=models.SET_NULL,
  77. related_name='+',
  78. help_text='Location image'
  79. )
  80. body = StreamField(
  81. BaseStreamBlock(), verbose_name="About page detail", blank=True
  82. )
  83. # We've defined the StreamBlock() within blocks.py that we've imported on
  84. # line 12. Defining it in a different file gives us consistency across the
  85. # site, though StreamFields _can_ be created on a per model basis if you
  86. # have a use case for it
  87. content_panels = Page.content_panels + [
  88. ImageChooserPanel('image'),
  89. StreamFieldPanel('body'),
  90. InlinePanel(
  91. 'location_about_relationship',
  92. label='Locations',
  93. min_num=None
  94. ),
  95. ]
  96. # parent_page_types = [
  97. # 'home.HomePage'
  98. # ]
  99. # Defining what content type can sit under the parent
  100. # The empty array means that no children can be placed under the
  101. # LocationPage page model
  102. subpage_types = []
  103. # api_fields = ['image', 'body']
  104. class HomePage(Page):
  105. """
  106. The Home Page
  107. """
  108. image = models.ForeignKey(
  109. 'wagtailimages.Image',
  110. null=True,
  111. blank=True,
  112. on_delete=models.SET_NULL,
  113. related_name='+',
  114. help_text='Location image'
  115. )
  116. body = StreamField(
  117. BaseStreamBlock(), verbose_name="Home page detail", blank=True
  118. )
  119. content_panels = Page.content_panels + [
  120. ImageChooserPanel('image'),
  121. StreamFieldPanel('body'),
  122. ]
  123. def __str__(self):
  124. return self.title
  125. class GalleryPage(Page):
  126. """
  127. This is a page to list all the locations on the site
  128. """
  129. choices = models.ForeignKey(
  130. Collection,
  131. limit_choices_to=~models.Q(name__in=['Root']),
  132. null=True,
  133. blank=True,
  134. on_delete=models.SET_NULL,
  135. )
  136. image = models.ForeignKey(
  137. 'wagtailimages.Image',
  138. null=True,
  139. blank=True,
  140. on_delete=models.SET_NULL,
  141. related_name='+',
  142. help_text='Location listing image'
  143. )
  144. introduction = models.TextField(
  145. help_text='Text to describe the index page',
  146. blank=True)
  147. content_panels = Page.content_panels + [
  148. FieldPanel('choices'),
  149. ImageChooserPanel('image'),
  150. FieldPanel('introduction')
  151. ]
  152. # parent_page_types = [
  153. # 'home.HomePage'
  154. # ]
  155. # Defining what content type can sit under the parent. Since it's a blank
  156. # array no subpage can be added
  157. subpage_types = [
  158. ]
  159. # api_fields = ['introduction']
  160. class FormField(AbstractFormField):
  161. page = ParentalKey('FormPage', related_name='form_fields')
  162. class FormPage(AbstractEmailForm):
  163. header_image = models.ForeignKey(
  164. 'wagtailimages.Image',
  165. null=True,
  166. blank=True,
  167. on_delete=models.SET_NULL,
  168. related_name='+'
  169. )
  170. body = StreamField(BaseStreamBlock())
  171. thank_you_text = RichTextField(blank=True)
  172. content_panels = AbstractEmailForm.content_panels + [
  173. ImageChooserPanel('header_image'),
  174. StreamFieldPanel('body'),
  175. InlinePanel('form_fields', label="Form fields"),
  176. FieldPanel('thank_you_text', classname="full"),
  177. MultiFieldPanel([
  178. FieldRowPanel([
  179. FieldPanel('from_address', classname="col6"),
  180. FieldPanel('to_address', classname="col6"),
  181. ]),
  182. FieldPanel('subject'),
  183. ], "Email"),
  184. ]
  185. class PeopleModelAdmin(ModelAdmin):
  186. model = People
  187. menu_label = 'People' # ditch this to use verbose_name_plural from model
  188. menu_icon = 'fa-people' # change as required
  189. list_display = ('first_name', 'last_name', 'job_title', 'thumb_image')
  190. class MyModelAdminGroup(ModelAdminGroup):
  191. menu_label = 'WagtailBakery'
  192. menu_icon = 'folder-open-inverse' # change as required
  193. menu_order = 200 # will put in 3rd place (000 being 1st, 100 2nd)
  194. items = (PeopleModelAdmin,)
  195. # When using a ModelAdminGroup class to group several ModelAdmin classes together,
  196. # you only need to register the ModelAdminGroup class with Wagtail:
  197. modeladmin_register(MyModelAdminGroup)