fix: add "other" menu entry, plus docs/tests

This commit is contained in:
Lance Edgar 2025-01-13 09:19:03 -06:00
parent ce54ca6bd6
commit c2f76f6c97
20 changed files with 546 additions and 15 deletions

View file

@ -35,7 +35,6 @@ def main(global_config, **settings):
"""
# prefer Sideshow templates over wuttaweb
settings.setdefault('mako.directories', [
# 'sideshow_corepos.web:templates',
'sideshow.web:templates',
'wuttaweb:templates',
])
@ -63,6 +62,6 @@ def make_wsgi_app():
def make_asgi_app():
"""
Make and return the ASGI app.
Make and return the ASGI app (generic entry point).
"""
return base.make_asgi_app(main)