1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-21 22:47:43 +00:00
Files
matomo/plugins/CoreUpdater/templates/updateSuccess.twig
Marc Neudert 200584887c Require token to display migration details during core update (#23318)
* Require token to display migration details during core update

* Update expected screenshot

* apply review feedback

---------

Co-authored-by: Matt <1169490+caddoo@users.noreply.github.com>
Co-authored-by: Stefan Giehl <stefan@matomo.org>
2025-05-26 15:46:11 +02:00

52 خطوط
1.5 KiB
Twig

{% extends '@CoreUpdater/layout.twig' %}
{% block content %}
<div class="header">
<h1>{{ 'CoreUpdater_UpdateSuccessTitle'|translate }}</h1>
</div>
<div class="content">
<h2>
{{ 'CoreUpdater_ThankYouUpdatePiwik'|translate }}
</h2>
<p>
{{ 'CoreUpdater_PostUpdateMessage'|translate }}
</p>
<h2>
{{ 'CoreUpdater_PostUpdateSupport'|translate }}
</h2>
<div class="row">
<div class="col s5 offset-s1">
<a href="{{ 'https://matomo.org/support-plans/'|trackmatomolink }}" class="btn btn-block">{{ 'CoreUpdater_ServicesSupport'|translate|raw }}</a>
</div>
<div class="col s5">
<a href="{{ 'https://matomo.org/hosting/'|trackmatomolink }}" class="btn btn-block">{{ 'CoreUpdater_CloudHosting'|translate }}</a>
</div>
</div>
{% if feedbackMessages is defined and feedbackMessages is not empty %}
<h2>{{ 'CoreUpdater_UpdateLog'|translate }}</h2>
<div class="row">
<div class="col s12">
<pre style="margin-top: 0;"><code>
{%- for message in feedbackMessages %}
&#10003; {{ message }}
{% endfor -%}
</code></pre>
</div>
</div>
{% endif %}
</div>
<div class="footer">
<a href="{{ runUpdaterUrl }}">{{ 'General_ContinueToPiwik'|translate }}</a>
</div>
{% endblock %}