Files
drmaterac.pl/modules/pshowsso/views/templates/admin/more.html.twig
Jacek Pyziak 778ee26fe4 Add Symfony Deprecation Contracts package
- Created CHANGELOG.md to maintain version history.
- Added README.md with usage instructions for the trigger_deprecation() function.
- Initialized composer.json for the Symfony Deprecation Contracts library, specifying dependencies and autoloading.
2025-12-15 08:43:18 +01:00

30 lines
993 B
Twig

{#**
* File from http://PrestaShow.pl
*
* DISCLAIMER
* Do not edit or add to this file if you wish to upgrade this module to newer
* versions in the future.
*
* @author PrestaShow.pl <kontakt@prestashow.pl>
* @copyright Since 2014 PrestaShow.pl
* @license https://prestashow.pl/license
*#}
{% extends '@Modules/pshowsso/deps/prestashow/presta-base-v1/Resources/views/admin/admin_controller.html.twig' %}
{% block module_content %}
<div class="row justify-content-center">
<div class="col-xl-10">
<div class="card">
<h3 class="card-header">
<i class="material-icons">edit</i>
{{ 'More services?'|trans({}, 'Modules.Pshowsso.Admin') }}
</h3>
<div class="card-body">
{{ 'Need to log in through another service? Write to us!'|trans({}, 'Modules.Pshowsso.Admin') }}
</div>
</div>
</div>
</div>
{% endblock %}