summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/definingviews.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-11-24 11:46:04 -0800
committerSteve Piercy <web@stevepiercy.com>2018-11-24 11:46:04 -0800
commitabba3f32fa3a0e91b2780724123e63b0ce38adc6 (patch)
treedae6c8eb0b2f4e033974f7f18646b23fee07082b /docs/tutorials/wiki/definingviews.rst
parent3d77f50790bdd5a63513c82b53d677dfe31c6494 (diff)
downloadpyramid-abba3f32fa3a0e91b2780724123e63b0ce38adc6.tar.gz
pyramid-abba3f32fa3a0e91b2780724123e63b0ce38adc6.tar.bz2
pyramid-abba3f32fa3a0e91b2780724123e63b0ce38adc6.zip
Update models and view application sections
Diffstat (limited to 'docs/tutorials/wiki/definingviews.rst')
-rw-r--r--docs/tutorials/wiki/definingviews.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/tutorials/wiki/definingviews.rst b/docs/tutorials/wiki/definingviews.rst
index 03bdd1080..625716de9 100644
--- a/docs/tutorials/wiki/definingviews.rst
+++ b/docs/tutorials/wiki/definingviews.rst
@@ -21,6 +21,11 @@ A view callable is assumed to return a :term:`response` object.
We will define several :term:`view callable` functions, then wire them into :app:`Pyramid` using some :term:`view configuration`.
+.. note::
+
+ This chapter will introduce more concepts, as did the previous.
+ 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.
+
Declaring Dependencies in Our ``setup.py`` File
===============================================