From 892ddaa98542a8e290645526f53325c5617416b7 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Thu, 7 Oct 2021 21:51:25 -0400 Subject: [PATCH] Members should come before Customers in menu at least, for those stores which have a Member concept --- theo/web/menus.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/theo/web/menus.py b/theo/web/menus.py index 8676ac8..62b9f4b 100644 --- a/theo/web/menus.py +++ b/theo/web/menus.py @@ -77,16 +77,16 @@ def simple_menus(request): 'title': "People", 'type': 'menu', 'items': [ - { - 'title': "Customers", - 'url': url('customers'), - 'perm': 'customers.list', - }, { 'title': "Members", 'url': url('members'), 'perm': 'members.list', }, + { + 'title': "Customers", + 'url': url('customers'), + 'perm': 'customers.list', + }, { 'title': "Employees", 'url': url('employees'),