Skip to content

Commit

Permalink
Display variant name as well
Browse files Browse the repository at this point in the history
  • Loading branch information
Zales0123 committed Jun 14, 2024
1 parent 6f345e4 commit 6c78967
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Resources/views/admin/order/update/_order_items.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<tr>
<th>{{ 'sylius.ui.quantity'|trans }}</th>
<th>{{ 'sylius.ui.product'|trans }}</th>
<th>{{ 'sylius.ui.variant'|trans }}</th>
<th class="right aligned">{{ 'sylius.ui.unit_price'|trans }}</th>
<th class="right aligned">{{ 'sylius.ui.total'|trans }}</th>
<th>&nbsp;</th>
Expand All @@ -29,6 +30,7 @@
<tr>
<td>{{ form_row(itemForm.quantity) }}</td>
<td>{{ orderItem.productName }}</td>
<td>{{ orderItem.variantName }}</td>
<td class="right aligned">{{ money.format(orderItem.unitPrice, order.currencyCode) }}</td>
<td class="right aligned">{{ money.format(orderItem.total, order.currencyCode) }}</td>
<td class="right aligned">
Expand Down

0 comments on commit 6c78967

Please sign in to comment.