From eb01ac012c2f026590f5d32f8988fc34d2d93b4a Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Thu, 19 Feb 2015 16:48:54 +0000 Subject: [PATCH] A bit of help for non-Django devs --- docs/core_components/pages/creating_pages.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/core_components/pages/creating_pages.rst b/docs/core_components/pages/creating_pages.rst index 2b5bf47e0..901b049ef 100644 --- a/docs/core_components/pages/creating_pages.rst +++ b/docs/core_components/pages/creating_pages.rst @@ -7,6 +7,13 @@ Each page type (a.k.a Content type) in Wagtail is represented by a Django model. As all page types are Django models, you can use any field type that Django provides. See `Model field reference `_ for a complete list of field types you can use. Wagtail also provides ``RichTextField`` which provides a WYSIWYG editor for editing rich-text content. +.. topic:: Django models + + If you're not yet familiar with Django models, have a quick look at the following links to get you started: + `Creating models `_ + `Model syntax `_ + + An example Wagtail Page Model ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~