Skip to content

Commit

Permalink
fix for shipping zip not displaying in order detail view
Browse files Browse the repository at this point in the history
  • Loading branch information
witekdev committed Nov 1, 2024
1 parent 719dced commit e549714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jazkarta/shop/browser/templates/checkout_order.pt
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<h3>Shipping information</h3>
<dl>
<dt tal:content="string:${address/last_name}, ${address/first_name}">Name</dt>
<dd><span tal:condition="address/address|address/street|nothing" tal:content="string:${address/address|address/street}." /> <span tal:condition="address/city|nothing" tal:content="string:${address/city}," /> <span tal:condition="address/state|nothing" tal:content="string:${address/state}." /> <span tal:condition="address/zip|nothing" tal:content="string:${address/zip}." /> <span tal:condition="address/country|nothing" tal:content="string:${address/country}." /></dd>
<dd><span tal:condition="address/address|address/street|nothing" tal:content="string:${address/address|address/street}." /> <span tal:condition="address/city|nothing" tal:content="string:${address/city}," /> <span tal:condition="address/state|nothing" tal:content="string:${address/state}." /> <span tal:condition="address/postal_code|nothing" tal:content="string:${address/postal_code}." /> <span tal:condition="address/country|nothing" tal:content="string:${address/country}." /></dd>
</dl>
</div>
<div tal:define="address cart/bill_to|nothing"
Expand Down

0 comments on commit e549714

Please sign in to comment.