tailbone-corepos/tailbone_corepos/templates/corepos-util.mako
Lance Edgar dbde3cbfbe Add jump buttons to view product, vendor in CORE Office
hopefully can use the same pattern for anything else that comes up
2020-03-14 19:49:38 -05:00

19 lines
498 B
Mako

## -*- coding: utf-8; -*-
<%def name="render_xref_helper()">
<div class="object-helper">
<h3>Cross-Reference</h3>
<div class="object-helper-content">
<b-button type="is-primary"
% if core_office_url:
tag="a" href="${core_office_url}" target="_blank"
% else:
disabled title="${core_office_why_no_url}"
% endif
>
View in CORE Office
</b-button>
</div>
</div>
</%def>