0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-29 17:36:49 +01:00
wagtail/docs/building_your_site.rst

252 lines
9.2 KiB
ReStructuredText
Raw Normal View History

2014-02-18 18:45:31 +01:00
Building your site
==================
2014-05-07 20:26:04 +02:00
Site
~~~~
Django's built-in admin interface provides the way to map a "site" (hostname or domain) to the root of a wagtail tree. Access this by going to "/django-admin/" and then "Home Wagtailcore Sites." To try out a development site, add a single site with the hostname ``localhost`` at port ``8000`` and map it to one of the pieces of content you have created..
Model Design
~~~~~~~~~~~~
Wagtail manages content internally as a tree of pages. Each node in the tree is an instance of a Django model which subclasses the Wagtail ``Page`` class. You define the structure and interrelationships of your Wagtail site by coding these models and then publishing pages which use the models through the Wagtail admin interface.
``Page`` uses Django's model interface, so you can include any field type and field options that Django allows. Wagtail provides some fields and editing handlers that simplify data entry in the Wagtail admin interface, so you may want to keep those in mind when deciding what properties to add to your models in addition to those already provided by ``Page``.
Built-in Properties of the Page Class
-------------------------------------
Wagtail provides some properties in the Page class which are common to most webpages. Since you'll be subclassing ``Page``, you don't have to worry about implementing them.
Public Properties Suitable for Inclusion in Templates
`````````````````````````````````````````````````````
``title`` (required)
Human-readable title for the content
``slug`` (required)
2014-05-07 20:28:20 +02:00
Machine-readable URL component for this piece of content. The name of the page as it will appear in URLs e.g ``http://domain.com/blog/[my-slug]/``
2014-05-07 20:26:04 +02:00
``seo_title``
2014-05-07 20:31:48 +02:00
Alternate SEO-crafted title which overrides the normal title for use in the ``<head>`` of a page
2014-05-07 20:26:04 +02:00
``search_description``
A SEO-crafted description of the content, used in both internal search indexing and for the meta description read by search engines
Private Properties Meant for Use in the Wagtail Admin
`````````````````````````````````````````````````````
``show_in_menus``
Boolean (checkbox) - Whether a link to this page will appear in automatically generated menus"))
``live``
Boolean (content status selectors) - whether the page is in a published, public-visible state
``has_unpublished_changes``
Boolean (content status selectors) - whether the page is in a draft state
``owner``
User who owns the page
Internal Properties Which Describe The Model Instance
`````````````````````````````````````````````````````
``content_type``
??? Used to keep track of class names
``url_path``
The full URL path, including the slugs of all parents going back to the site root. Whenever a slug is changed in the tree, all of the node's descendants are updated with the new path.
Introduction to Trees
---------------------
If you're unfamiliar with trees as an abstract data type, you might want to review the concepts involved:
http://en.wikipedia.org/wiki/Tree_(data_structure)
2014-05-07 20:31:48 +02:00
As a web developer, though, you probably already have a good understanding of trees as filesystem directories or paths. Wagtail pages can create the same structure, as each page in the tree has its own URL path, like so::
2014-05-07 20:26:04 +02:00
/
people/
nien-nunb/
laura-roslin/
events/
captain-picard-day/
winter-wrap-up/
The Wagtail admin interface uses the tree to organize content for editing, letting you navigate up and down levels in the tree through its Explorer menu. This method of organization is a good place to start in thinking about your own Wagtail models.
Nodes and Leaves
----------------
It might be handy to think of the Page-derived models you want to create as being one of two node types: parents and leaves.
Parents
```````
Parent nodes on the Wagtail tree probably want to organize and display a browsable index of their descendents. A blog, for instance, needs a way to show a list of individual posts.
2014-05-07 20:31:48 +02:00
A Parent node could provide its own function returning its descendant objects. ::
2014-05-07 20:26:04 +02:00
class EventPageIndex(Page):
...
def events(self):
# Get list of event pages that are descendants of this page
events = EventPage.objects.filter(
live=True,
path__startswith=self.path
)
return events
This example makes sure to limit the returned objects to pieces of content which make sense, specifically ones which have been published through Wagtail's admin interface (live=True) and are descendants of this node. Wagtail will allow the "illogical" placement of child nodes under a parent, so it's necessary for a parent model to index only those children which make sense.
Leaves
``````
Leaves are the pieces of content itself, a page which is consumable, and might just consist of a bunch of properties. A blog page leaf might have some body text and an image. A person page leaf might have a photo, a name, and an address.
It might be helpful for a leaf to provide a way to back up along the tree to a parent, such as in the case of breadcrumbs navigation. The tree might also be deep enough that a leaf's parent won't be included in general site navigation.
2014-05-07 20:31:48 +02:00
The model for the leaf could provide a function that traverses the tree in the opposite direction and returns an appropriate ancestor.::
2014-05-07 20:26:04 +02:00
class BlogPage(Page):
...
def blog_index(self):
# Find blog index in ancestors
for ancestor in reversed(self.get_ancestors()):
if isinstance(ancestor.specific, BlogIndexPage):
return ancestor
# No ancestors are blog indexes, just return first blog index in database
return BlogIndexPage.objects.first()
Since Wagtail doesn't limit what Page-derived classes can be assigned as parents and children, the reverse tree traversal needs to accommodate cases which might not be expected, such as the lack of a "logical" parent to a leaf.
Other Relationships
```````````````````
Your Page-derived models might have other interrelationships which extend the basic Wagtail tree or depart from it entirely. You could provide functions to navigate between siblings, such as a "Next Post" link on a blog page(post->post->post). It might make sense for subtrees to interrelate, such as in a discussion forum (forum->post->replies) Skipping across the hierarchy might make sense, too, as all objects of a certain model class might interrelate regardless of their ancestors (events = EventPage.objects.all). Since there's no restriction on the combination of model classes that can be used at any point in the tree, and it's largely up to the models to define their interrelations, the possibilities are really endless.
Advanced
--------
custom serve methods
iCal
JSON
custom route methods
ParentalKey for storing groups of stuff to a Page-thing
ClusterTaggableManager for tagging
Orderable
Provides an abstract group of properties for ordering a collection of stuff
Using or subclassing the site model?
Wagtail Admin
~~~~~~~~~~~~~
Fields & Edit Handlers
----------------------
RichTextField
Image
FieldPanel
MultiFieldPanel
InlinePanel
PageChooserPanel
ImageChooserPanel
DocumentChooserPanel
Snippets
--------
Registering and using template tags?
Templates
~~~~~~~~~
Location
--------
Wagtail looks for templates matching your models in...
Self
----
Without a custom rendering function, a
Tags Provided by Wagtail
------------------------
pageurl
Loaded into a template with
{% load pageurl %}
Used like
<a href="{% pageurl blog %}">
Given a Page-derived class, outputs a page's URL as relative (/foo/bar/) if it's within the same site as the current page, or absolute (http://example.com/foo/bar/) if not.
slugurl
Loaded into a template with
{% load slugurl %}
Used like
<a href="{% slugurl blogslug %}">
Returns the URL for the page that has the given slug. Like pageurl, will try to provide a relative link if possible, but will default to an absolute link if on a different site.
wagtailuserbar
Loaded into a template with
{% load wagtailuserbar %}
Used like
{% wagtailuserbar %}
This tag provides a Wagtail icon and flyout menu on the top-right of a page for a logged-in user with editing capabilities, with the option of editing the current Page-derived object or adding a new sibling object.
image
Loaded with
{% load image_tags %}
Used with
{% image self.photo max-320x200 %}
{% image self.photo max-320x200 as img %}
This template tag provides a way to process an image with a method and dimensions
'max': 'resize_to_max',
'min': 'resize_to_min',
'width': 'resize_to_width',
'height': 'resize_to_height',
'fill': 'resize_to_fill',
Filters Provided by Wagtail
---------------------------
rich_text
Loaded into template with
{% load rich_text %}
Used with
{{ body|richtext }}
This filter is required for use with any RichTextField, because it will expand internal shorthand references to embeds and links made in the Wagtail editor into fully-baked HTML ready for display.
Advanced Wagtail
~~~~~~~~~~~~~~~~
replacing image processing backend
custom image processing methods?
wagtail user bar custom CSS option?
Example Site
~~~~~~~~~~~~
2014-02-18 18:45:31 +01:00
Serafeim Papastefanos has written a comprehensive tutorial on creating a site from scratch in Wagtail; for the time being, this is our recommended resource:
2014-05-07 20:26:04 +02:00
`spapas.github.io/2014/02/13/wagtail-tutorial/ <http://spapas.github.io/2014/02/13/wagtail-tutorial/>`_