61 lines
2.1 KiB
Plaintext
61 lines
2.1 KiB
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.
|
|
# --
|
|
|
|
<div class="LayoutPopup ARIARoleMain">
|
|
|
|
<div class="Header">
|
|
<h1>
|
|
[% Translate("History of %s%s-%s", Config("ITSMWorkOrder::Hook"), Data.ChangeNumber, Data.WorkOrderNumber) | html %] – [% Data.WorkOrderTitle | truncate(60) | html %]
|
|
</h1>
|
|
<p>
|
|
<a href="[% Env("Baselink") %]Action=AgentITSMWorkOrderHistory;WorkOrderID=[% Data.WorkOrderID | uri %]">[% Translate("Back") | html %]</a>
|
|
[% Translate("or") | html %]
|
|
<a class="CancelClosePopup" href="#">[% Translate("Cancel & close") | html %]</a>
|
|
</p>
|
|
</div>
|
|
<div class="Content">
|
|
|
|
<h2>[% Translate("Detailed history information of %s", Data.HistoryType) | html %]</h2>
|
|
<fieldset class="TableLike FixedLabel">
|
|
|
|
<label>[% Translate("Modified") | html %]:</label>
|
|
<div class="Field">
|
|
[% Data.Fieldname | html %]
|
|
</div>
|
|
<div class="Clear"></div>
|
|
|
|
<label>[% Translate("Old Value") | html %]:</label>
|
|
<div class="Field">
|
|
[% Data.ContentOld %]
|
|
</div>
|
|
<div class="Clear"></div>
|
|
|
|
<label>[% Translate("New Value") | html %]:</label>
|
|
<div class="Field">
|
|
[% Data.ContentNew %]
|
|
</div>
|
|
<div class="Clear"></div>
|
|
|
|
<label>[% Translate("Changed") | html %]:</label>
|
|
<div class="Field">
|
|
[% Data.ChangeTime | Localize("TimeLong") %]
|
|
</div>
|
|
<div class="Clear"></div>
|
|
|
|
<label>[% Translate("Changed by") | html %]:</label>
|
|
<div class="Field" title="[% Data.UserFullname | html %]">
|
|
([% Data.UserFullname | html %])
|
|
</div>
|
|
<div class="Clear"></div>
|
|
|
|
</fieldset>
|
|
</div>
|
|
<div class="Footer">
|
|
</div>
|
|
</div>
|