tailbone/tailbone/templates/purchases/batches/index.mako
Lance Edgar a6e43d1658 Add support for new Purchase/Batch views, 'create row' master pattern
More refactoring here but hopefully not that important..
2016-11-06 12:58:29 -06:00

12 lines
278 B
Mako

## -*- coding: utf-8 -*-
<%inherit file="/master/index.mako" />
<%def name="context_menu_items()">
${parent.context_menu_items()}
% if request.has_perm('purchases.batch'):
<li>${h.link_to("Go to Purchases", url('purchases'))}</li>
% endif
</%def>
${parent.body()}