models.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  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.admin.edit_handlers import (
  6. FieldPanel,
  7. FieldRowPanel,
  8. InlinePanel,
  9. MultiFieldPanel,
  10. PageChooserPanel,
  11. StreamFieldPanel,
  12. )
  13. from wagtail.core.fields import RichTextField, StreamField
  14. from wagtail.core.models import Collection, Page
  15. from wagtail.contrib.forms.models import AbstractEmailForm, AbstractFormField
  16. from wagtail.images.edit_handlers import ImageChooserPanel
  17. from wagtail.search import index
  18. from wagtail.snippets.models import register_snippet
  19. from .blocks import BaseStreamBlock
  20. @register_snippet
  21. class People(ClusterableModel):
  22. """
  23. A Django model to store People objects.
  24. It uses the `@register_snippet` decorator to allow it to be accessible
  25. via the Snippets UI (e.g. /admin/snippets/base/people/)
  26. `People` uses the `ClusterableModel`, which allows the relationship with
  27. another model to be stored locally to the 'parent' model (e.g. a PageModel)
  28. until the parent is explicitly saved. This allows the editor to use the
  29. 'Preview' button, to preview the content, without saving the relationships
  30. to the database.
  31. https://github.com/wagtail/django-modelcluster
  32. """
  33. first_name = models.CharField("First name", max_length=254)
  34. last_name = models.CharField("Last name", max_length=254)
  35. job_title = models.CharField("Job title", max_length=254)
  36. image = models.ForeignKey(
  37. 'wagtailimages.Image',
  38. null=True,
  39. blank=True,
  40. on_delete=models.SET_NULL,
  41. related_name='+'
  42. )
  43. panels = [
  44. FieldPanel('first_name', classname="col6"),
  45. FieldPanel('last_name', classname="col6"),
  46. FieldPanel('job_title'),
  47. ImageChooserPanel('image')
  48. ]
  49. search_fields = Page.search_fields + [
  50. index.SearchField('first_name'),
  51. index.SearchField('last_name'),
  52. ]
  53. @property
  54. def thumb_image(self):
  55. # Returns an empty string if there is no profile pic or the rendition
  56. # file can't be found.
  57. try:
  58. return self.image.get_rendition('fill-50x50').img_tag()
  59. except:
  60. return ''
  61. def __str__(self):
  62. return '{} {}'.format(self.first_name, self.last_name)
  63. class Meta:
  64. verbose_name = 'Person'
  65. verbose_name_plural = 'People'
  66. @register_snippet
  67. class FooterText(models.Model):
  68. """
  69. This provides editable text for the site footer. Again it uses the decorator
  70. `register_snippet` to allow it to be accessible via the admin. It is made
  71. accessible on the template via a template tag defined in base/templatetags/
  72. navigation_tags.py
  73. """
  74. body = RichTextField()
  75. panels = [
  76. FieldPanel('body'),
  77. ]
  78. def __str__(self):
  79. return "Footer text"
  80. class Meta:
  81. verbose_name_plural = 'Footer Text'
  82. class StandardPage(Page):
  83. """
  84. A generic content page. On this demo site we use it for an about page but
  85. it could be used for any type of page content that only needs a title,
  86. image, introduction and body field
  87. """
  88. introduction = models.TextField(
  89. help_text='Text to describe the page',
  90. blank=True)
  91. image = models.ForeignKey(
  92. 'wagtailimages.Image',
  93. null=True,
  94. blank=True,
  95. on_delete=models.SET_NULL,
  96. related_name='+',
  97. help_text='Landscape mode only; horizontal width between 1000px and 3000px.'
  98. )
  99. body = StreamField(
  100. BaseStreamBlock(), verbose_name="Page body", blank=True
  101. )
  102. content_panels = Page.content_panels + [
  103. FieldPanel('introduction', classname="full"),
  104. StreamFieldPanel('body'),
  105. ImageChooserPanel('image'),
  106. ]
  107. class HomePage(Page):
  108. """
  109. The Home Page. This looks slightly more complicated than it is. You can
  110. see if you visit your site and edit the homepage that it is split between
  111. a:
  112. - Hero area
  113. - Body area
  114. - A promotional area
  115. - Moveable featured site sections
  116. """
  117. # Hero section of HomePage
  118. image = models.ForeignKey(
  119. 'wagtailimages.Image',
  120. null=True,
  121. blank=True,
  122. on_delete=models.SET_NULL,
  123. related_name='+',
  124. help_text='Homepage image'
  125. )
  126. hero_text = models.CharField(
  127. max_length=255,
  128. help_text='Write an introduction for the bakery'
  129. )
  130. hero_cta = models.CharField(
  131. verbose_name='Hero CTA',
  132. max_length=255,
  133. help_text='Text to display on Call to Action'
  134. )
  135. hero_cta_link = models.ForeignKey(
  136. 'wagtailcore.Page',
  137. null=True,
  138. blank=True,
  139. on_delete=models.SET_NULL,
  140. related_name='+',
  141. verbose_name='Hero CTA link',
  142. help_text='Choose a page to link to for the Call to Action'
  143. )
  144. # Body section of the HomePage
  145. body = StreamField(
  146. BaseStreamBlock(), verbose_name="Home content block", blank=True
  147. )
  148. # Promo section of the HomePage
  149. promo_image = models.ForeignKey(
  150. 'wagtailimages.Image',
  151. null=True,
  152. blank=True,
  153. on_delete=models.SET_NULL,
  154. related_name='+',
  155. help_text='Promo image'
  156. )
  157. promo_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. promo_text = RichTextField(
  164. null=True,
  165. blank=True,
  166. help_text='Write some promotional copy'
  167. )
  168. # Featured sections on the HomePage
  169. # You will see on templates/base/home_page.html that these are treated
  170. # in different ways, and displayed in different areas of the page.
  171. # Each list their children items that we access via the children function
  172. # that we define on the individual Page models e.g. BlogIndexPage
  173. featured_section_1_title = models.CharField(
  174. null=True,
  175. blank=True,
  176. max_length=255,
  177. help_text='Title to display above the promo copy'
  178. )
  179. featured_section_1 = models.ForeignKey(
  180. 'wagtailcore.Page',
  181. null=True,
  182. blank=True,
  183. on_delete=models.SET_NULL,
  184. related_name='+',
  185. help_text='First featured section for the homepage. Will display up to '
  186. 'three child items.',
  187. verbose_name='Featured section 1'
  188. )
  189. featured_section_2_title = models.CharField(
  190. null=True,
  191. blank=True,
  192. max_length=255,
  193. help_text='Title to display above the promo copy'
  194. )
  195. featured_section_2 = models.ForeignKey(
  196. 'wagtailcore.Page',
  197. null=True,
  198. blank=True,
  199. on_delete=models.SET_NULL,
  200. related_name='+',
  201. help_text='Second featured section for the homepage. Will display up to '
  202. 'three child items.',
  203. verbose_name='Featured section 2'
  204. )
  205. featured_section_3_title = models.CharField(
  206. null=True,
  207. blank=True,
  208. max_length=255,
  209. help_text='Title to display above the promo copy'
  210. )
  211. featured_section_3 = models.ForeignKey(
  212. 'wagtailcore.Page',
  213. null=True,
  214. blank=True,
  215. on_delete=models.SET_NULL,
  216. related_name='+',
  217. help_text='Third featured section for the homepage. Will display up to '
  218. 'six child items.',
  219. verbose_name='Featured section 3'
  220. )
  221. content_panels = Page.content_panels + [
  222. MultiFieldPanel([
  223. ImageChooserPanel('image'),
  224. FieldPanel('hero_text', classname="full"),
  225. MultiFieldPanel([
  226. FieldPanel('hero_cta'),
  227. PageChooserPanel('hero_cta_link'),
  228. ])
  229. ], heading="Hero section"),
  230. MultiFieldPanel([
  231. ImageChooserPanel('promo_image'),
  232. FieldPanel('promo_title'),
  233. FieldPanel('promo_text'),
  234. ], heading="Promo section"),
  235. StreamFieldPanel('body'),
  236. MultiFieldPanel([
  237. MultiFieldPanel([
  238. FieldPanel('featured_section_1_title'),
  239. PageChooserPanel('featured_section_1'),
  240. ]),
  241. MultiFieldPanel([
  242. FieldPanel('featured_section_2_title'),
  243. PageChooserPanel('featured_section_2'),
  244. ]),
  245. MultiFieldPanel([
  246. FieldPanel('featured_section_3_title'),
  247. PageChooserPanel('featured_section_3'),
  248. ])
  249. ], heading="Featured homepage sections", classname="collapsible")
  250. ]
  251. def __str__(self):
  252. return self.title
  253. class GalleryPage(Page):
  254. """
  255. This is a page to list locations from the selected Collection. We use a Q
  256. object to list any Collection created (/admin/collections/) even if they
  257. contain no items. In this demo we use it for a GalleryPage,
  258. and is intended to show the extensibility of this aspect of Wagtail
  259. """
  260. introduction = models.TextField(
  261. help_text='Text to describe the page',
  262. blank=True)
  263. image = models.ForeignKey(
  264. 'wagtailimages.Image',
  265. null=True,
  266. blank=True,
  267. on_delete=models.SET_NULL,
  268. related_name='+',
  269. help_text='Landscape mode only; horizontal width between 1000px and '
  270. '3000px.'
  271. )
  272. body = StreamField(
  273. BaseStreamBlock(), verbose_name="Page body", blank=True
  274. )
  275. collection = models.ForeignKey(
  276. Collection,
  277. limit_choices_to=~models.Q(name__in=['Root']),
  278. null=True,
  279. blank=True,
  280. on_delete=models.SET_NULL,
  281. help_text='Select the image collection for this gallery.'
  282. )
  283. content_panels = Page.content_panels + [
  284. FieldPanel('introduction', classname="full"),
  285. StreamFieldPanel('body'),
  286. ImageChooserPanel('image'),
  287. FieldPanel('collection'),
  288. ]
  289. # Defining what content type can sit under the parent. Since it's a blank
  290. # array no subpage can be added
  291. subpage_types = []
  292. class FormField(AbstractFormField):
  293. """
  294. Wagtailforms is a module to introduce simple forms on a Wagtail site. It
  295. isn't intended as a replacement to Django's form support but as a quick way
  296. to generate a general purpose data-collection form or contact form
  297. without having to write code. We use it on the site for a contact form. You
  298. can read more about Wagtail forms at:
  299. http://docs.wagtail.io/en/latest/reference/contrib/forms/index.html
  300. """
  301. page = ParentalKey('FormPage', related_name='form_fields', on_delete=models.CASCADE)
  302. class FormPage(AbstractEmailForm):
  303. image = models.ForeignKey(
  304. 'wagtailimages.Image',
  305. null=True,
  306. blank=True,
  307. on_delete=models.SET_NULL,
  308. related_name='+'
  309. )
  310. body = StreamField(BaseStreamBlock())
  311. thank_you_text = RichTextField(blank=True)
  312. # Note how we include the FormField object via an InlinePanel using the
  313. # related_name value
  314. content_panels = AbstractEmailForm.content_panels + [
  315. ImageChooserPanel('image'),
  316. StreamFieldPanel('body'),
  317. InlinePanel('form_fields', label="Form fields"),
  318. FieldPanel('thank_you_text', classname="full"),
  319. MultiFieldPanel([
  320. FieldRowPanel([
  321. FieldPanel('from_address', classname="col6"),
  322. FieldPanel('to_address', classname="col6"),
  323. ]),
  324. FieldPanel('subject'),
  325. ], "Email"),
  326. ]