diff --git a/src/wuttaweb/menus.py b/src/wuttaweb/menus.py index ae3745f..3445659 100644 --- a/src/wuttaweb/menus.py +++ b/src/wuttaweb/menus.py @@ -143,6 +143,8 @@ class MenuHandler(GenericHandler): which will ultimately be one element of the final list of dicts as described in :class:`MenuHandler`. + :param title: Override the menu title; default is "Admin". + :param include_people: You can pass this flag to indicate the admin menu should contain an entry for the "People" view. """ @@ -198,7 +200,7 @@ class MenuHandler(GenericHandler): ]) return { - 'title': "Admin", + 'title': kwargs.get('title', "Admin"), 'type': 'menu', 'items': items, }