14 lines
284 B
Python
14 lines
284 B
Python
|
# -*- coding: utf-8; -*-
|
||
|
"""
|
||
|
{{cookiecutter.project_name}} Views
|
||
|
"""
|
||
|
|
||
|
|
||
|
def includeme(config):
|
||
|
|
||
|
# core views for wuttaweb
|
||
|
config.include('wuttaweb.views.essential')
|
||
|
|
||
|
# TODO: include your own views here
|
||
|
#config.include('{{cookiecutter.package_name}}.web.views.widgets')
|