Expose the productUser
table data
just the basics for now...
This commit is contained in:
parent
5b48c44891
commit
6b423870eb
3 changed files with 89 additions and 1 deletions
12
tailbone_corepos/templates/core-pos/products-user/index.mako
Normal file
12
tailbone_corepos/templates/core-pos/products-user/index.mako
Normal 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()}
|
12
tailbone_corepos/templates/core-pos/products/index.mako
Normal file
12
tailbone_corepos/templates/core-pos/products/index.mako
Normal 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()}
|
Loading…
Add table
Add a link
Reference in a new issue