Add basic view support for CORE trans archive

This commit is contained in:
Lance Edgar 2022-03-26 23:06:07 -05:00
parent 148b4ccc1a
commit 149f5be052
8 changed files with 288 additions and 95 deletions

View file

@ -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('corepos.transaction_details_archive'):
<li>${h.link_to("View Archive Details", url('corepos.transaction_details_archive'))}</li>
% endif
</%def>
${parent.body()}