summaryrefslogtreecommitdiff
path: root/docs/quick_tour.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2015-11-11 21:09:15 -0800
committerSteve Piercy <web@stevepiercy.com>2015-11-11 21:09:15 -0800
commit049e670aef9ea5611561546fd5c0e2dd6152b9b7 (patch)
tree48062c2b7b7050fe28025d1fd3d62ab5c196b4e6 /docs/quick_tour.rst
parentd4f2a55d461cbc92f2fc85b3bb6b482ca709732f (diff)
downloadpyramid-049e670aef9ea5611561546fd5c0e2dd6152b9b7.tar.gz
pyramid-049e670aef9ea5611561546fd5c0e2dd6152b9b7.tar.bz2
pyramid-049e670aef9ea5611561546fd5c0e2dd6152b9b7.zip
Revert "update wiki2/src/basiclayout/tutorial"
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