Add feature demo for importing Square transactions to CORE-POS
also allow delete of CORE-POS transactions, for sake of demo
This commit is contained in:
parent
e20a9b8123
commit
b7512e0b31
4 changed files with 43 additions and 1 deletions
|
@ -0,0 +1,11 @@
|
|||
## -*- coding: utf-8; -*-
|
||||
<%inherit file="/master/index.mako" />
|
||||
|
||||
<%def name="context_menu_items()">
|
||||
${parent.context_menu_items()}
|
||||
% if request.has_perm('{}.import_file'.format(permission_prefix)):
|
||||
<li>${h.link_to("Import {} from Square CSV".format(model_title_plural), url('{}.import_square'.format(route_prefix)))}</li>
|
||||
% endif
|
||||
</%def>
|
||||
|
||||
${parent.body()}
|
Loading…
Add table
Add a link
Reference in a new issue