88 lines
3.4 KiB
Plaintext
88 lines
3.4 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="InvisibleText">[% Translate("Criticality ↔ Impact ↔ Priority") | html %]</h1>
|
|
|
|
[% BreadcrumbPath = [
|
|
{
|
|
Name => Translate('Criticality ↔ Impact ↔ Priority'),
|
|
Link => Env("Action"),
|
|
},
|
|
]
|
|
%]
|
|
|
|
[% INCLUDE "Breadcrumb.tt" Path = BreadcrumbPath %]
|
|
|
|
<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 Criticality ↔ 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>
|
|
<fieldset class="TableLike">
|
|
<div class="Field SpacingTop SaveButtons">
|
|
<button class="Primary CallForAction" id="Submit" 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>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|