grand-total.html 552 B

12345678910111213141516171819
  1. <!--
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. -->
  7. <!-- ko if: isDisplayed() -->
  8. <tr class="grand totals">
  9. <td class="mark" scope="row">
  10. <strong data-bind="i18n: title"></strong>
  11. </td>
  12. <td class="amount" data-bind="attr: {'data-th': $t(title)}">
  13. <strong><span class="price" data-bind="text: getValue()"></span></strong>
  14. <!-- ko foreach: elems() -->
  15. <!-- ko template: getTemplate() --><!-- /ko -->
  16. <!-- /ko -->
  17. </td>
  18. </tr>
  19. <!-- /ko -->