summaryrefslogtreecommitdiff
path: root/docs/getting_started/quick_glance/jinja2/views.py
diff options
context:
space:
mode:
authorPaul Everitt <paul@agendaless.com>2013-08-11 09:53:00 -0400
committerPaul Everitt <paul@agendaless.com>2013-08-11 09:53:00 -0400
commitae901436a61563968cc31cc636f1fbeb5e85b528 (patch)
tree8ce7a18dd4913f7195c5a013ab03eb64ae21180d /docs/getting_started/quick_glance/jinja2/views.py
parentd4bd291fd5ca51bbbeec487f2011476706a5952f (diff)
downloadpyramid-ae901436a61563968cc31cc636f1fbeb5e85b528.tar.gz
pyramid-ae901436a61563968cc31cc636f1fbeb5e85b528.tar.bz2
pyramid-ae901436a61563968cc31cc636f1fbeb5e85b528.zip
Per discussion with Chris, just wrap up "getting started" as the Quick Tour. Still need to do more linking and perhaps add a section on root factories, authorization, authentication.
Diffstat (limited to 'docs/getting_started/quick_glance/jinja2/views.py')
-rw-r--r--docs/getting_started/quick_glance/jinja2/views.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/docs/getting_started/quick_glance/jinja2/views.py b/docs/getting_started/quick_glance/jinja2/views.py
deleted file mode 100644
index 916cdc720..000000000
--- a/docs/getting_started/quick_glance/jinja2/views.py
+++ /dev/null
@@ -1,8 +0,0 @@
-from pyramid.view import view_config
-
-
-# Start View 1
-@view_config(route_name='hello', renderer='hello_world.jinja2')
-# End View 1
-def hello_world(request):
- return dict(name=request.matchdict['name'])