12345678910111213141516171819 |
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <!-- ko if: isDisplayed() -->
- <tr class="grand totals">
- <td class="mark" scope="row">
- <strong data-bind="i18n: title"></strong>
- </td>
- <td class="amount" data-bind="attr: {'data-th': $t(title)}">
- <strong><span class="price" data-bind="text: getValue()"></span></strong>
- <!-- ko foreach: elems() -->
- <!-- ko template: getTemplate() --><!-- /ko -->
- <!-- /ko -->
- </td>
- </tr>
- <!-- /ko -->
|