mirror of
https://github.com/a2nt/silverstripe-webpack.git
synced 2024-10-22 17:05:31 +02:00
27 lines
904 B
Scheme
27 lines
904 B
Scheme
<div class="grid grid-field">
|
|
<table class="shop-order shop-order--addresses table grid-field__table">
|
|
<thead>
|
|
<tr class="shop-order__title">
|
|
<th colspan="2">
|
|
<h2><%t SilverShop\Model\Address.SINGULARNAME "Address" %></h2>
|
|
</th>
|
|
</tr>
|
|
<tr class="shop-order__header">
|
|
<th><%t SilverShop\Model\Order.ShipTo "Ship To" %></th>
|
|
<th><%t SilverShop\Model\Order.BillTo "Bill To" %></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td class="shop-order__address">$getShippingAddress</td>
|
|
<td class="shop-order__address">$getBillingAddress</td>
|
|
</tr>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td class="bottom-all" colspan="2"></td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|