Files
wyczarujprezent.pl/modules/inpostizi/views/templates/admin/config/support/troubleshooting.html.twig
Jacek Pyziak 4066f6fa31 Add InPost Pay integration to admin templates
- Created a new template for the cart rule form with custom label, switch, and choice widgets.
- Implemented the InPost Pay block in the order details template for displaying delivery method, APM, and VAT invoice request.
- Added legacy support for the order details template to maintain compatibility with older PrestaShop versions.
2025-09-14 14:38:09 +02:00

33 lines
956 B
Twig

{% extends "@Modules/inpostizi/views/templates/admin/config/support/partials/block.html.twig" %}
{% block support_block_extra_classes %}mb-0 h-100{% endblock %}
{% block support_block_header_content %}
<i class="material-icons mr-2">error</i>
<span>
{{ 'Contact and support'|legacy_trans }}
</span>
{% endblock %}
{% block support_block_body_extra_classes %}p-3{% endblock %}
{% block support_block_body_content %}
<ul class="mb-0 pl-3">
<li class="mb-1">
<a href="https://inpostpay.pl/kontakt">
{{ 'Technical support - use the contact form'|legacy_trans }}
</a>
</li>
<li class="mb-1">
<a href="https://inpostpay.pl/kontakt">
{{ 'Contact your sales representative'|legacy_trans }}
</a>
</li>
<li>
<a href="https://dokumentacja-inpost.atlassian.net/wiki/spaces/PL/pages/163905538/FAQ+InPost+Pay">
{{ 'FAQ'|legacy_trans }}
</a>
</li>
</ul>
{% endblock %}