summaryrefslogtreecommitdiff
path: root/docs/getting_started/views.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/getting_started/views.rst')
-rw-r--r--docs/getting_started/views.rst10
1 files changed, 0 insertions, 10 deletions
diff --git a/docs/getting_started/views.rst b/docs/getting_started/views.rst
index 827778a66..f30caea8a 100644
--- a/docs/getting_started/views.rst
+++ b/docs/getting_started/views.rst
@@ -17,22 +17,12 @@ person, then editing that person or perhaps deleting that person. They
might logically belong together. We could do these as independent
functions, but let's do them together as a view class:
-.. literalinclude:: quick_glance/view_classes/views.py
- :start-after: Start View 1
- :end-before: End View 1
...and some routes that wire up the views to URLs:
-.. literalinclude:: quick_glance/view_classes/app.py
- :start-after: Start Routes 1
- :end-before: End Routes 1
...and a form in ``hello_world.jinja2`` that submits to the second view:
-.. literalinclude:: quick_glance/view_classes/hello_world.jinja2
- :language: html
- :start-after: Start Form 1
- :end-before: End Form 1
Just to review: