1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
# --
# Copyright (C) 2001-2021 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="LayoutFixedSidebar SidebarLast [% Data.MainBoxClass | html %]">
<div class="SidebarColumn">
[% RenderBlockStart("ProcessInfoSidebar") %]
<div class="WidgetSimple">
<div class="Header">
<h2>[% Translate("Process Information") | html %]</h2>
</div>
<div class="Content">
<fieldset class="TableLike FixedLabelSmall">
<label>[% Translate("Process") | html %]:</label>
<p class="Value FixedValueSmall" title="[% Translate(Data.Process) | html %]">[% Translate(Data.Process) | html %]</p>
<div class="Clear"></div>
</fieldset>
<fieldset class="TableLike FixedLabelSmall">
<label>[% Translate("Activity") | html %]:</label>
<p class="Value FixedValueSmall" title="[% Translate(Data.Activity) | html %]">[% Translate(Data.Activity) | html %]</p>
<div class="Clear"></div>
<label>[% Translate("Dialog") | html %]:</label>
<p class="Value FixedValueSmall" title="[% Data.ActivityDialog | html %]">[% Data.ActivityDialog | html %]</p>
<div class="Clear"></div>
[% RenderBlockStart("ProcessInfoSidebarActivityDialogDesc") %]
<label>[% Translate("Description") | html %]:</label>
<p class="Value FixedValueSmall" title="[% Translate(Data.ActivityDialogDescription) | html %]">[% Translate(Data.ActivityDialogDescription) | html %]</p>
<div class="Clear"></div>
[% RenderBlockEnd("ProcessInfoSidebarActivityDialogDesc") %]
</fieldset>
</div>
</div>
[% RenderBlockEnd("ProcessInfoSidebar") %]
[% RenderBlockStart("LongDescriptionSidebar") %]
<div class="WidgetSimple">
<div class="Header">
<h2>[% Translate("Description") | html %]</h2>
</div>
<div class="Content">
<p class="Value FixedValueSmall DescriptionLong">[% Translate(Data.Description) | html %]</p>
<div class="Clear"></div>
</div>
</div>
[% RenderBlockEnd("LongDescriptionSidebar") %]
</div>
<div class="ContentColumn">
<form action="[% Env("CGIHandle") %]" method="post" enctype="multipart/form-data" name="[% Data.FormName %]" id="[% Data.FormID %]" class="Validate PreventMultipleSubmits">
<input type="hidden" name="Action" value="[% Env("Action") %]"/>
<input type="hidden" name="Subaction" value="[% Data.Subaction | html %]"/>
<input type="hidden" name="TicketID" value="[% Data.TicketID | html %]"/>
<input type="hidden" name="LinkTicketID" value="[% Data.LinkTicketID | html %]"/>
<input type="hidden" name="ProcessEntityID" value="[% Data.ProcessEntityID | html %]"/>
<input type="hidden" name="ActivityDialogEntityID" value="[% Data.ActivityDialogEntityID | html %]"/>
<input type="hidden" name="Expand" id="Expand" value=""/>
<input type="hidden" name="IsMainWindow" id="IsMainWindow" value="[% Data.IsMainWindow | html %]"/>
<input type="hidden" name="IsProcessEnroll" id="IsProcessEnroll" value="[% Data.IsProcessEnroll | html %]"/>
<input type="hidden" name="FormID" value="[% Data.FormID | html %]"/>
<div class="LayoutPopup ARIARoleMain">
[% RenderBlockStart("Header") %]
<div class="Header">
<h1>
[% Data.Name | html %]
[% RenderBlockStart("DescriptionShort") %]
- [% Data.DescriptionShort | html %]
[% RenderBlockEnd("DescriptionShort") %]
</h1>
[% RenderBlockStart("DescriptionLong") %]
<p class="DescriptionLong">
[% Data.DescriptionLong | html %]
</p>
[% RenderBlockEnd("DescriptionLong") %]
[% RenderBlockStart("CancelLink") %]
<p>
<a class="CancelClosePopup" href="#">[% Translate("Cancel & close") | html %]</a>
</p>
[% RenderBlockEnd("CancelLink") %]
[% RenderBlockStart("PropertiesLock") %]
<p>
[% Translate("The ticket has been locked") | html %].
<a class="UndoClosePopup" href="[% Env("Baselink") %]Action=AgentTicketLock;Subaction=Unlock;TicketID=[% Data.TicketID %][% IF Data.PreviousOwner %];PreviousOwner=[% Data.PreviousOwner %][% END %];[% Env("ChallengeTokenParam") | html %]">
[% Translate("Undo & close") | html %]
</a>
</p>
[% RenderBlockEnd("PropertiesLock") %]
</div>
[% RenderBlockEnd("Header") %]
<div class="Content">
<fieldset class="TableLike">
|