summaryrefslogtreecommitdiff
path: root/docs/quick_tour.rst
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2015-11-12 08:47:16 -0500
committerTres Seaver <tseaver@palladion.com>2015-11-12 08:47:16 -0500
commitb4c96d2892d8271b300b1920e3ce5d2c0eae588b (patch)
tree7c0bd810af0d239f0513653eb29eba6e1a08f6a2 /docs/quick_tour.rst
parente99cd355140258b7cd4cd9c1a83fd3ada1eb2b04 (diff)
parent47162533af84bb8d26db6d1c9ba1e63d70e9070f (diff)
downloadpyramid-b4c96d2892d8271b300b1920e3ce5d2c0eae588b.tar.gz
pyramid-b4c96d2892d8271b300b1920e3ce5d2c0eae588b.tar.bz2
pyramid-b4c96d2892d8271b300b1920e3ce5d2c0eae588b.zip
Merge branch 'master' into feature/alchemy-scaffold-update
Conflicts: docs/tutorials/wiki2/basiclayout.rst
Diffstat (limited to 'docs/quick_tour.rst')
-rw-r--r--docs/quick_tour.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick_tour.rst b/docs/quick_tour.rst
index 87c6f1e1c..be5be2e36 100644
--- a/docs/quick_tour.rst
+++ b/docs/quick_tour.rst
@@ -818,14 +818,14 @@ The ORM eases the mapping of database structures into a programming
language. SQLAlchemy uses "models" for this mapping. The scaffold
generated a sample model:
-.. literalinclude:: quick_tour/sqla_demo/sqla_demo/models/mymodel.py
+.. literalinclude:: quick_tour/sqla_demo/sqla_demo/models.py
:start-after: Start Sphinx Include
:end-before: End Sphinx Include
View code, which mediates the logic between web requests and the rest
of the system, can then easily get at the data thanks to SQLAlchemy:
-.. literalinclude:: quick_tour/sqla_demo/sqla_demo/views/default.py
+.. literalinclude:: quick_tour/sqla_demo/sqla_demo/views.py
:start-after: Start Sphinx Include
:end-before: End Sphinx Include