models.py 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  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, PageChooserPanel, StreamFieldPanel,
  7. )
  8. from wagtail.wagtailcore.fields import RichTextField, StreamField
  9. from wagtail.wagtailcore.models import Collection, Page
  10. from wagtail.wagtailforms.models import AbstractEmailForm, AbstractFormField
  11. from wagtail.wagtailimages.edit_handlers import ImageChooserPanel
  12. from wagtail.wagtailsearch import index
  13. from wagtail.wagtailsnippets.models import register_snippet
  14. from .blocks import BaseStreamBlock
  15. @register_snippet
  16. class People(ClusterableModel):
  17. """
  18. `People` snippets are secondary content objects that do not require their
  19. own full webpage to render.
  20. """
  21. first_name = models.CharField("First name", max_length=254)
  22. last_name = models.CharField("Last name", max_length=254)
  23. job_title = models.CharField("Job title", max_length=254)
  24. image = models.ForeignKey(
  25. 'wagtailimages.Image',
  26. null=True,
  27. blank=True,
  28. on_delete=models.SET_NULL,
  29. related_name='+'
  30. )
  31. panels = [
  32. FieldPanel('first_name', classname="col6"),
  33. FieldPanel('last_name', classname="col6"),
  34. FieldPanel('job_title'),
  35. ImageChooserPanel('image')
  36. ]
  37. search_fields = Page.search_fields + [
  38. index.SearchField('first_name'),
  39. index.SearchField('last_name'),
  40. ]
  41. @property
  42. def thumb_image(self):
  43. # fail silently if there is no profile pic or the rendition file can't
  44. # be found. Note @richbrennan worked out how to do this...
  45. try:
  46. return self.image.get_rendition('fill-50x50').img_tag()
  47. except:
  48. return ''
  49. def __str__(self):
  50. return '{} {}'.format(self.first_name, self.last_name)
  51. class Meta:
  52. verbose_name = 'Person'
  53. verbose_name_plural = 'People'
  54. @register_snippet
  55. class FooterText(models.Model):
  56. """
  57. This provides editable text for the site footer
  58. """
  59. body = RichTextField()
  60. panels = [
  61. FieldPanel('body'),
  62. ]
  63. def __str__(self):
  64. return "Footer text"
  65. class Meta:
  66. verbose_name_plural = 'Footer Text'
  67. class StandardPage(Page):
  68. """
  69. A fairly generic site page, to be used for About, etc.
  70. """
  71. introduction = models.TextField(
  72. help_text='Text to describe the page',
  73. blank=True)
  74. image = models.ForeignKey(
  75. 'wagtailimages.Image',
  76. null=True,
  77. blank=True,
  78. on_delete=models.SET_NULL,
  79. related_name='+',
  80. help_text='Landscape mode only; horizontal width between 1000px and 3000px.'
  81. )
  82. body = StreamField(
  83. BaseStreamBlock(), verbose_name="Page body", blank=True
  84. )
  85. content_panels = Page.content_panels + [
  86. FieldPanel('introduction', classname="full"),
  87. StreamFieldPanel('body'),
  88. ImageChooserPanel('image'),
  89. ]
  90. class HomePage(Page):
  91. """
  92. The Home Page
  93. """
  94. image = models.ForeignKey(
  95. 'wagtailimages.Image',
  96. null=True,
  97. blank=True,
  98. on_delete=models.SET_NULL,
  99. related_name='+',
  100. help_text='Homepage image'
  101. )
  102. hero_text = models.CharField(
  103. max_length=255,
  104. help_text='Write an introduction for the bakery'
  105. )
  106. hero_cta = models.CharField(
  107. verbose_name='Hero CTA',
  108. max_length=255,
  109. help_text='Text to display on Call to Action'
  110. )
  111. hero_cta_link = models.ForeignKey(
  112. 'wagtailcore.Page',
  113. null=True,
  114. blank=True,
  115. on_delete=models.SET_NULL,
  116. related_name='+',
  117. verbose_name='Hero CTA link',
  118. help_text='Choose a page to link to for the Call to Action'
  119. )
  120. body = StreamField(
  121. BaseStreamBlock(), verbose_name="Home content block", blank=True
  122. )
  123. promo_image = models.ForeignKey(
  124. 'wagtailimages.Image',
  125. null=True,
  126. blank=True,
  127. on_delete=models.SET_NULL,
  128. related_name='+',
  129. help_text='Promo image'
  130. )
  131. promo_title = models.CharField(
  132. null=True,
  133. blank=True,
  134. max_length=255,
  135. help_text='Title to display above the promo copy'
  136. )
  137. promo_text = RichTextField(
  138. null=True,
  139. blank=True,
  140. help_text='Write some promotional copy'
  141. )
  142. featured_section_1_title = models.CharField(
  143. null=True,
  144. blank=True,
  145. max_length=255,
  146. help_text='Title to display above the promo copy'
  147. )
  148. featured_section_1 = models.ForeignKey(
  149. 'wagtailcore.Page',
  150. null=True,
  151. blank=True,
  152. on_delete=models.SET_NULL,
  153. related_name='+',
  154. help_text='First featured section for the homepage. Will display up to three child items.',
  155. verbose_name='Featured section 1'
  156. )
  157. featured_section_2_title = models.CharField(
  158. null=True,
  159. blank=True,
  160. max_length=255,
  161. help_text='Title to display above the promo copy'
  162. )
  163. featured_section_2 = models.ForeignKey(
  164. 'wagtailcore.Page',
  165. null=True,
  166. blank=True,
  167. on_delete=models.SET_NULL,
  168. related_name='+',
  169. help_text='Second featured section for the homepage. Will display up to three child items.',
  170. verbose_name='Featured section 2'
  171. )
  172. featured_section_3_title = models.CharField(
  173. null=True,
  174. blank=True,
  175. max_length=255,
  176. help_text='Title to display above the promo copy'
  177. )
  178. featured_section_3 = models.ForeignKey(
  179. 'wagtailcore.Page',
  180. null=True,
  181. blank=True,
  182. on_delete=models.SET_NULL,
  183. related_name='+',
  184. help_text='Third featured section for the homepage. Will display up to six child items.',
  185. verbose_name='Featured section 3'
  186. )
  187. content_panels = Page.content_panels + [
  188. MultiFieldPanel([
  189. ImageChooserPanel('image'),
  190. FieldPanel('hero_text', classname="full"),
  191. MultiFieldPanel([
  192. FieldPanel('hero_cta'),
  193. PageChooserPanel('hero_cta_link'),
  194. ])
  195. ], heading="Hero section"),
  196. MultiFieldPanel([
  197. ImageChooserPanel('promo_image'),
  198. FieldPanel('promo_title'),
  199. FieldPanel('promo_text'),
  200. ], heading="Promo section"),
  201. StreamFieldPanel('body'),
  202. MultiFieldPanel([
  203. MultiFieldPanel([
  204. FieldPanel('featured_section_1_title'),
  205. PageChooserPanel('featured_section_1'),
  206. ]),
  207. MultiFieldPanel([
  208. FieldPanel('featured_section_2_title'),
  209. PageChooserPanel('featured_section_2'),
  210. ]),
  211. MultiFieldPanel([
  212. FieldPanel('featured_section_3_title'),
  213. PageChooserPanel('featured_section_3'),
  214. ])
  215. ], heading="Featured homepage sections", classname="collapsible")
  216. ]
  217. def __str__(self):
  218. return self.title
  219. class GalleryPage(Page):
  220. """
  221. This is a page to list locations from the selected Collection
  222. """
  223. introduction = models.TextField(
  224. help_text='Text to describe the page',
  225. blank=True)
  226. image = models.ForeignKey(
  227. 'wagtailimages.Image',
  228. null=True,
  229. blank=True,
  230. on_delete=models.SET_NULL,
  231. related_name='+',
  232. help_text='Landscape mode only; horizontal width between 1000px and 3000px.'
  233. )
  234. body = StreamField(
  235. BaseStreamBlock(), verbose_name="Page body", blank=True
  236. )
  237. collection = models.ForeignKey(
  238. Collection,
  239. limit_choices_to=~models.Q(name__in=['Root']),
  240. null=True,
  241. blank=True,
  242. on_delete=models.SET_NULL,
  243. help_text='Select the image collection for this gallery.'
  244. )
  245. content_panels = Page.content_panels + [
  246. FieldPanel('introduction', classname="full"),
  247. StreamFieldPanel('body'),
  248. ImageChooserPanel('image'),
  249. FieldPanel('collection'),
  250. ]
  251. # Defining what content type can sit under the parent. Since it's a blank
  252. # array no subpage can be added
  253. subpage_types = []
  254. class FormField(AbstractFormField):
  255. page = ParentalKey('FormPage', related_name='form_fields')
  256. class FormPage(AbstractEmailForm):
  257. image = models.ForeignKey(
  258. 'wagtailimages.Image',
  259. null=True,
  260. blank=True,
  261. on_delete=models.SET_NULL,
  262. related_name='+'
  263. )
  264. body = StreamField(BaseStreamBlock())
  265. thank_you_text = RichTextField(blank=True)
  266. content_panels = AbstractEmailForm.content_panels + [
  267. ImageChooserPanel('image'),
  268. StreamFieldPanel('body'),
  269. InlinePanel('form_fields', label="Form fields"),
  270. FieldPanel('thank_you_text', classname="full"),
  271. MultiFieldPanel([
  272. FieldRowPanel([
  273. FieldPanel('from_address', classname="col6"),
  274. FieldPanel('to_address', classname="col6"),
  275. ]),
  276. FieldPanel('subject'),
  277. ], "Email"),
  278. ]