summaryrefslogtreecommitdiff
path: root/docs/quick_tour/jinja2/views.py
blob: 916cdc7203f449dfcc373462ab2900375c606d52 (plain)
1
2
3
4
5
6
7
8
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'])