% var maxFractionDigits = localeSettings.getNumberFormats('currency')['max_fraction_digits'] %>
<% if (price === null) { %>
<%- _.__('oro.pricing.product_prices.price_not_found') %>
<% } else {%>
<% if (false !== showValuePrice) { %>
<%- _.__('oro.pricing.product_prices.your_price') %>
<%= price.formatted_price.trim() %>
/
<%- _.__('oro.product.product_unit.' + price.unit + '.label.full') %>
<%- _.__('oro.product.product_unit.' + price.unit + '.label.short') %>
<% } %>
<% if (false !== showListedPrice) { %>
<%- _.__('oro.pricing.product_prices.listed_price') %>
<% _.each(listedPrice, function(price, unitCode) { %>
<%- price.formatted_price %>
/
<%- _.__('oro.product.product_unit.' + price.unit + '.label.full') %>
<%- _.__('oro.product.product_unit.' + price.unit + '.label.short') %>
<% }) %>
<% } %>
<% } %>