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

80 lines
3.2 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="MainBox ARIARoleMain LayoutFixedSidebar SidebarFirst">
<h1 class="Header">[% Translate("Category ↔ Impact ↔ Priority") | html %]</h1>
<div class="SidebarColumn">
<div class="WidgetSimple">
<div class="Header"><h2>[% Translate("Note") | html %]</h2></div>
<div class="Content">
<p class="FieldExplanation">
[% Translate("Manage the priority result of combinating Category ↔ Impact.") | html %]
</p>
</div>
</div>
</div>
<div class="ContentColumn">
<div class="WidgetSimple">
<div class="Header">
<h2>[% Translate("Priority allocation") | html %]</h2>
</div>
<div class="Content">
<form action="[% Env("CGIHandle") %]" method="post">
<input type="hidden" name="Action" value="[% Env("Action") %]"/>
<input type="hidden" name="Subaction" value="CIPAllocate"/>
<table class="DataTable DataTableNoHighlight">
<thead>
<tr>
[% RenderBlockStart("HeaderColumnDescription") %]
<th>
[% Translate(Data.ObjectType) | html %]
</th>
[% RenderBlockEnd("HeaderColumnDescription") %]
[% RenderBlockStart("HeaderCell") %]
<th>
[% Translate(Data.ObjectOption) | html %]
</th>
[% RenderBlockEnd("HeaderCell") %]
</tr>
</thead>
<tbody>
[% RenderBlockStart("Row") %]
<tr>
[% RenderBlockStart("DescriptionCell") %]
<td>
[% Translate(Data.ObjectOption) | html %]
</td>
[% RenderBlockEnd("DescriptionCell") %]
[% RenderBlockStart("ContentCell") %]
<td>
[% Data.OptionStrg %]
</td>
[% RenderBlockEnd("ContentCell") %]
</tr>
[% RenderBlockEnd("Row") %]
</tbody>
</table>
<div class="SpacingTop">
<button class="Primary CallForAction" id="SubmitAndContinue" type="submit" value="[% Translate("Save") | html %]">
<span>[% Translate("Save") | html %]</span>
</button>
[% Translate("or") | html %]
<a href="[% Env("Baselink") %]Action=[% Env("Action") %]">
<span>[% Translate("Cancel") | html %]</span>
</a>
</div>
</form>
</div>
</div>
</div>
</div>