1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 06:57:53 +00:00
Files
matomo/plugins/Marketplace/templates/_updateCommunicationEmail.twig
aloxe 52c573a057 add href in link in update message email (#16661)
* add href in link in update message email

* add href in link in update message email

* code review: secure host in url
2020-12-31 16:24:00 -08:00

27 خطوط
827 B
Twig

<p>{{ 'ScheduledReports_EmailHello'|translate }}</p>
<p>{{ 'CoreUpdater_ThereIsNewPluginVersionAvailableForUpdate'|translate }}</p>
<ul>
{% for plugin in pluginsToBeNotified %}
<li>{{ plugin.name }} {{ plugin.latestVersion }}</li>
{% endfor %}
</ul>
{% if hasThemeUpdate %}
<p>
{{ 'CoreUpdater_NotificationClickToUpdateThemes'|translate }}<br/>
<a href="{{ host|e('html_attr') }}index.php?module=CorePluginsAdmin&action=themes">{{ host }}index.php?module=CorePluginsAdmin&action=themes</a>
</p>
{% endif %}
{% if hasPluginUpdate %}
<p>
{{ 'CoreUpdater_NotificationClickToUpdatePlugins'|translate }}<br/>
<a href="{{ host|e('html_attr') }}index.php?module=CorePluginsAdmin&action=plugins">{{ host }}index.php?module=CorePluginsAdmin&action=plugins</a>
</p>
{% endif %}
<p>
{{ 'Installation_HappyAnalysing'|translate }}
</p>