summaryrefslogtreecommitdiff
path: root/docs/tutorials
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-11-24 11:44:28 -0800
committerSteve Piercy <web@stevepiercy.com>2018-11-24 11:44:28 -0800
commit3d77f50790bdd5a63513c82b53d677dfe31c6494 (patch)
treefbe2de049e6ef2faead40af27d504aef079bb105 /docs/tutorials
parent90036b6778992f896ccf4aa52c241fafb1c82f24 (diff)
downloadpyramid-3d77f50790bdd5a63513c82b53d677dfe31c6494.tar.gz
pyramid-3d77f50790bdd5a63513c82b53d677dfe31c6494.tar.bz2
pyramid-3d77f50790bdd5a63513c82b53d677dfe31c6494.zip
Add a note for resources and traversal chapters.
Diffstat (limited to 'docs/tutorials')
-rw-r--r--docs/tutorials/wiki/definingmodels.rst7
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/tutorials/wiki/definingmodels.rst b/docs/tutorials/wiki/definingmodels.rst
index 81dd25862..2ea81b005 100644
--- a/docs/tutorials/wiki/definingmodels.rst
+++ b/docs/tutorials/wiki/definingmodels.rst
@@ -10,9 +10,14 @@ We will do this inside our ``models.py`` file.
Because we are using :term:`ZODB` to represent our :term:`resource tree`, each of these resource constructors represents a :term:`domain model` object.
We will call these constructors "model constructors".
-Both our Page and Wiki constructors will be class objects.
+Both our ``Page`` and ``Wiki`` constructors will be class objects.
A single instance of the "Wiki" class will serve as a container for "Page" objects, which will be instances of the "Page" class.
+.. note::
+
+ We will introduce a lot of concepts throughout the remainder of this tutorial.
+ See also the chapter :ref:`resources_chapter` for a complete description of resources and the chapter :ref:`traversal_chapter` for the technical details of how traversal works in Pyramid.
+
Delete the database
-------------------