Files
scripts/Perl OTRS/Kernel/Output/HTML/Templates/Standard/AgentDashboardProductNotify.tt
2024-10-14 00:08:40 +02:00

28 lines
1012 B
Plaintext

# --
# Copyright (C) 2001-2019 OTRS AG, https://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.
# --
<table class="DataTable">
<tbody>
[% RenderBlockStart("ContentProductMessage") %]
<tr>
<td>
[% Data.Message %]
<hr width="100%"/>
</td>
</tr>
[% RenderBlockEnd("ContentProductMessage") %]
[% RenderBlockStart("ContentProductRelease") %]
<tr>
<td>
[% Translate("%s %s is available!", Data.Name, Data.Version) | html %] [% Translate("Please update now.") | html %] (<a href="[% Data.Link %]" target="_blank">[% Translate("Release Note") | html %] - [% Translate("Level") | html %]: [% Translate(Data.Severity) | html %]</a>)
</td>
</tr>
[% RenderBlockEnd("ContentProductRelease") %]
</tbody>
</table>