diff --git a/tailbone/templates/products/view.mako b/tailbone/templates/products/view.mako index a6df1e7a..131e2dbc 100644 --- a/tailbone/templates/products/view.mako +++ b/tailbone/templates/products/view.mako @@ -138,38 +138,6 @@ <%def name="sources_grid()"> ${vendor_sources['grid'].render_buefy_table_element(data_prop='vendorSourcesData')|n} -
${costs_label_preferred} | -${costs_label_vendor} | -${costs_label_code} | -${costs_label_case_size} | -Case Cost | -Unit Cost | -Status | - - - % for i, cost in enumerate(instance.costs, 1): -
---|---|---|---|---|---|---|
${'X' if cost.preference == 1 else ''} | -- % if request.has_perm('vendors.view'): - ${h.link_to(cost.vendor, request.route_url('vendors.view', uuid=cost.vendor_uuid))} - % else: - ${cost.vendor} - % endif - | -${cost.code or ''} | -${h.pretty_quantity(cost.case_size)} | -${'$ %0.2f' % cost.case_cost if cost.case_cost is not None else ''} | -${'$ %0.4f' % cost.unit_cost if cost.unit_cost is not None else ''} | -${"discontinued" if cost.discontinued else "available"} | -