payment list

pull/1/head
alexanderroese 2024-05-31 11:22:58 +02:00
parent 8298d7b9a6
commit 52ff25b793
1 changed files with 14 additions and 1 deletions

View File

@ -97,7 +97,20 @@
{{ form | payment_button }}
{%- endif -%}
<span>test</span>
<!-- custom code -->
<div style="display: flex; flex-direction: column; align-items: center">
<span>Sicher Bezahlen mit</span>
<ul class="list list-payment" role="list">
{%- for type in shop.enabled_payment_types -%}
<li class="list-payment__item">
{{ type | payment_type_svg_tag: class: 'icon icon--full-color' }}
</li>
{%- endfor -%}
</ul>
</div>
<!-- end -->
</div>
{%- endform -%}
</product-form>