Expose the productUser table data

just the basics for now...
This commit is contained in:
Lance Edgar 2020-12-09 13:11:42 -06:00
parent 5b48c44891
commit 6b423870eb
3 changed files with 89 additions and 1 deletions

View file

@ -0,0 +1,12 @@
## -*- coding: utf-8; -*-
<%inherit file="/master/index.mako" />
<%def name="context_menu_items()">
${parent.context_menu_items()}
% if request.has_perm('corepos.products.list'):
<li>${h.link_to("View CORE-POS Products", url('corepos.products'))}</li>
% endif
</%def>
${parent.body()}

View file

@ -0,0 +1,12 @@
## -*- coding: utf-8; -*-
<%inherit file="/master/index.mako" />
<%def name="context_menu_items()">
${parent.context_menu_items()}
% if request.has_perm('corepos.products_user.list'):
<li>${h.link_to("View CORE-POS Products User", url('corepos.products_user'))}</li>
% endif
</%def>
${parent.body()}