From 86c01bdf7bb52d3596778c291d2f0a2a0b222b41 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Mon, 21 Sep 2015 16:13:02 +0100 Subject: [PATCH] Renamed to "Page models" I think this is a good place to add some general usage docs so made the name more generic. --- docs/index.rst | 2 +- docs/topics/index.rst | 2 +- docs/topics/{creating_pages.rst => pages.rst} | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) rename docs/topics/{creating_pages.rst => pages.rst} (99%) diff --git a/docs/index.rst b/docs/index.rst index 5cada3729b..ee78e712a5 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -14,7 +14,7 @@ Below are some useful links to help you get started with Wagtail. * **Creating your Wagtail site** - * :doc:`topics/creating_pages` + * :doc:`topics/pages` * :doc:`topics/writing_templates` * :doc:`topics/images/index` * :doc:`topics/search/index` diff --git a/docs/topics/index.rst b/docs/topics/index.rst index af8848961d..1b462435c9 100644 --- a/docs/topics/index.rst +++ b/docs/topics/index.rst @@ -5,7 +5,7 @@ Topics .. toctree:: :maxdepth: 2 - creating_pages + pages writing_templates images/index search/index diff --git a/docs/topics/creating_pages.rst b/docs/topics/pages.rst similarity index 99% rename from docs/topics/creating_pages.rst rename to docs/topics/pages.rst index 9c13faa948..df3da17d51 100644 --- a/docs/topics/creating_pages.rst +++ b/docs/topics/pages.rst @@ -1,6 +1,6 @@ -==================== -Creating page models -==================== +=========== +Page models +=========== Each page type (a.k.a Content type) in Wagtail is represented by a Django model. All page models must inherit from the :class:`wagtail.wagtailcore.models.Page` class.