Files
html_cleanup/cleanup_html/views/default.py
2023-11-27 20:46:54 +01:00

7 lines
185 B
Python

from pyramid.view import view_config
@view_config(route_name='home', renderer='cleanup_html:templates/mytemplate.jinja2')
def my_view(request):
return {'project': 'cleanup_html'}