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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
# --
# 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.
# --
[% RenderBlockStart("AdminNavBar") %]
<div class="MainBox ARIARoleMain LayoutFixedSidebar SidebarFirst">
<h1 class="InvisibleText">[% Translate("Administration Overview") | html %]</h1>
<div class="SidebarColumn">
<div class="WidgetSimple">
<div class="Header">
<h2><label for="Filter">[% Translate("Filter for Items") | html %]</label></h2>
</div>
<div class="Content">
<input type="text" id="Filter" autocomplete="off" class="W95pc" name="Filter" value="" title="[% Translate("Filter") | html %]" placeholder="[% Translate("Just start typing to filter...") | html %]" />
</div>
</div>
<div class="WidgetSimple">
<div class="Header">
<h2>[% Translate("Favorites") | html %]</h2>
</div>
<div class="Content FavouriteList">
<table class="DataTable Favourites" [% IF !Data.Favourites.size() %]style="display: none;"[% END %]>
<tbody>
[% IF Data.Favourites.size() %]
[% FOREACH Item IN Data.Favourites %]
<tr>
<td><a class="AsBlock" href="[% Env("Baselink") %]Action=[% Item.item("Frontend::Module") | uri %]">[% Translate(Item.Name) | html %]</a></td>
<td class="Center"><a href="#" class="RemoveFromFavourites" data-module="[% Item.item("Frontend::Module") | html %]"><i class="fa fa-trash"></i></a></td>
</tr>
[% END %]
[% END %]
</tbody>
</table>
<p class="FieldExplanation">
[% Translate("You can add favorites by moving your cursor over items on the right side and clicking the star icon.") | html %]
</p>
</div>
</div>
<div class="WidgetSimple">
<div class="Header">
<h2>[% Translate("Links") | html %]</h2>
</div>
<div class="Content">
<ul class="ActionList">
<li>
<a href="https://doc.otrs.com/doc/manual/admin/[% Data.ManualVersion | uri %].0/en/html/index.html" target="_blank" class="CallForAction Fullsize Center"><span><i class="fa fa-book"></i>[% Translate("View the admin manual on Github") | html %]</span></a>
</li>
</ul>
</div>
</div>
</div>
<div class="ContentColumn">
<div class="WidgetSimple FilterMessageWidget Hidden">
<div class="Header">
<h2>[% Translate("No Matches") | html %]</h2>
</div>
<div class="Content">
<p>[% Translate("Sorry, your search didn't match any items.") | html %]</p>
</div>
</div>
[% FOREACH Group IN Data.Groups; GroupKey = Group.Key %]
[% IF Data.Items.$GroupKey.size() %]
<div class="WidgetSimple">
<div class="Header">
<h2>[% Translate(Group.Title) | html %]</h2>
</div>
<div class="Content">
<ul class="ItemListGrid WithIcons Filterable">
[% FOREACH Item IN Data.Items.$GroupKey %]
<li class="[% IF Item.IsFavourite %]IsFavourite[% END %] [% Item.CssClass | html %]" data-module="[% Item.item("Frontend::Module") | html %]">
<a class="AsBlock" href="[% Env("Baselink") %]Action=[% Item.item("Frontend::Module") | uri %]" title="[% Translate(Item.Description) | html %]">
<span class="Icons">
[% IF Item.IconBig %]
<i class="fa [% Item.IconBig %]"></i>
[% ELSE %]
<i class="fa fa-cog"></i>
[% END %]
[% IF Item.IconSmall %]
<i class="Icon2 fa [% Item.IconSmall %]"></i>
[% END %]
</span>
<span class="InvisibleText">[% Group.Title | html %]</span>
<span class="Title">
[% Translate(Item.Name) | html %]
<span class="InvisibleText">[% Item.Name | html %]</span>
</span>
<span class="Description">
[% Translate(Item.Description) | html %]
<span class="InvisibleText">[% Item.Description | html %]</span>
</span>
<span class="Favourite AddAsFavourite" data-module="[% Item.item("Frontend::Module") | html %]" title="[% Translate("Set as favorite") | html %]">
<i class="fa fa-star"></i>
<i class="fa fa-star-o"></i>
</span>
</a>
</li>
[% END %]
</ul>
</div>
</div>
[% END %]
[% END %]
</div>
</div>
[% RenderBlockEnd("AdminNavBar") %]
|