|
@@ -28,11 +28,11 @@ class People(ClusterableModel):
|
|
|
"""
|
|
|
A Django model to store People objects.
|
|
|
It uses the `@register_snippet` decorator to allow it to be accessible
|
|
|
- as via the Snippets UI (e.g. /admin/snippets/base/people/)
|
|
|
+ via the Snippets UI (e.g. /admin/snippets/base/people/)
|
|
|
|
|
|
`People` uses the `ClusterableModel`, which allows the relationship to another
|
|
|
model (e.g. a PageModel) to be stored independently of the database. This
|
|
|
- allows us to preview foreignKey relationships without first saving the parent
|
|
|
+ allows us to preview ForeignKey relationships without first saving the parent
|
|
|
https://github.com/wagtail/django-modelcluster
|
|
|
"""
|
|
|
first_name = models.CharField("First name", max_length=254)
|
|
@@ -100,7 +100,7 @@ class FooterText(models.Model):
|
|
|
class StandardPage(Page):
|
|
|
"""
|
|
|
A generic content page. On this demo site we use it for an about page but
|
|
|
- could be used for any type of page content.
|
|
|
+ it could be used for any type of page content.
|
|
|
"""
|
|
|
|
|
|
introduction = models.TextField(
|
|
@@ -284,8 +284,8 @@ class GalleryPage(Page):
|
|
|
"""
|
|
|
This is a page to list locations from the selected Collection. We use a Q
|
|
|
object to list any Collection created (/admin/collections/) even if they
|
|
|
- contain no items. It's unlikely to be useful for many production settings
|
|
|
- but is intended to show the extensibility of aspect of Wagtail
|
|
|
+ contain no items. In this demo we use it for a GalleryPage,
|
|
|
+ and is intended to show the extensibility of this aspect of Wagtail
|
|
|
"""
|
|
|
|
|
|
introduction = models.TextField(
|
|
@@ -297,7 +297,8 @@ class GalleryPage(Page):
|
|
|
blank=True,
|
|
|
on_delete=models.SET_NULL,
|
|
|
related_name='+',
|
|
|
- help_text='Landscape mode only; horizontal width between 1000px and 3000px.'
|
|
|
+ help_text='Landscape mode only; horizontal width between 1000px and '
|
|
|
+ '3000px.'
|
|
|
)
|
|
|
body = StreamField(
|
|
|
BaseStreamBlock(), verbose_name="Page body", blank=True
|
|
@@ -327,10 +328,10 @@ class FormField(AbstractFormField):
|
|
|
"""
|
|
|
Wagtailforms is a module to introduce simple forms on a Wagtail site. It
|
|
|
isn't intended as a replacement to Django's form support but as a quick way
|
|
|
- to generate general purpose data-collection form without having to write
|
|
|
+ to generate a general purpose data-collection form without having to write
|
|
|
code. We use it on the site for a contact form. You can read more about
|
|
|
Wagtail forms at:
|
|
|
- http://docs.wagtail.io/en/v1.9/reference/contrib/forms/index.html
|
|
|
+ http://docs.wagtail.io/en/latest/reference/contrib/forms/index.html
|
|
|
"""
|
|
|
page = ParentalKey('FormPage', related_name='form_fields')
|
|
|
|