diff --git a/theo/web/menus.py b/theo/web/menus.py index a4f0c4f..b14ea7f 100644 --- a/theo/web/menus.py +++ b/theo/web/menus.py @@ -298,6 +298,11 @@ def simple_menus(request): 'url': url('importing'), 'perm': 'importing.list', }, + { + 'title': "Luigi Jobs", + 'route': 'luigi', + 'perm': 'luigi.list', + }, { 'title': "Tables", 'url': url('tables'), diff --git a/theo/web/views/__init__.py b/theo/web/views/__init__.py index 566c5c4..5a0375f 100644 --- a/theo/web/views/__init__.py +++ b/theo/web/views/__init__.py @@ -2,7 +2,7 @@ ################################################################################ # # Rattail -- Retail Software Framework -# Copyright © 2010-2021 Lance Edgar +# Copyright © 2010-2022 Lance Edgar # # This file is part of Rattail. # @@ -34,6 +34,7 @@ def includeme(config): config.include('theo.web.views.common') config.include('tailbone.views.auth') config.include('tailbone.views.importing') + config.include('tailbone.views.luigi') config.include('tailbone.views.tables') config.include('tailbone.views.upgrades') config.include('tailbone.views.progress')