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

66 lines
2.5 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>[% Translate("Add") | html %]: [% Translate("Config Item") | html %]</h1>
<div class="SidebarColumn">
<div class="WidgetSimple">
<div class="Header">
<h2><label for="FilterClasses">[% Translate("Filter for Classes") | html %]</label></h2>
</div>
<div class="Content">
<input type="text" id="FilterClasses" class="FilterBox" name="FilterClasses" value="" title="[% Translate("Filter for Classes") | html %]" placeholder="[% Translate("Just start typing to filter...") | html %]" />
</div>
</div>
<div class="WidgetSimple">
<div class="Header">
<h2>[% Translate("Hint") | html %]</h2>
</div>
<div class="Content">
<p class="FieldExplanation">
[% Translate("Select a Class from the list to create a new Config Item.") | html %]
</p>
</div>
</div>
</div>
<div class="ContentColumn">
<div class="WidgetSimple">
<div class="Header">
<h2>[% Translate("List") | html %]</h2>
</div>
<div class="Content">
<table class="DataTable" id="Classes">
<thead>
<tr>
<th class="W100pc">[% Translate("Class") | html %]</th>
</tr>
</thead>
<tbody>
<tr class="FilterMessage Hidden">
<td>[% Translate("No matches found.") | html %]</td>
</tr>
[% RenderBlockStart("OverviewItemList") %]
<tr>
<td>
<a href="[% Env("Baselink") %]Action=AgentITSMConfigItemEdit;ClassID=[% Data.ClassID | uri %]">[% Translate(Data.Name) | html %]</a>
</td>
</tr>
[% RenderBlockEnd("OverviewItemList") %]
</tbody>
</table>
</div>
</div>
</div>
<div class="Clear"></div>
</div>