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
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~