NewTicketWizardRestrictedService.tt
2.78 KB
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
# --
# NewTicketWizardServiceForm.tt - provides HTML form for NewTicketWizardServiceForm - SeTIC - UFSC - http://setic.ufsc.br/
# Rodrigo Gonçalves - rodrigo.g@ufsc.br
#
# Version 01/12/2015 - Support for OTRS 4.0.3
# Version 2017-12-19 - Support for OTRS 6
#
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
# --
<div class="MainBox ARIARoleMain LayoutFixedSidebar SidebarFirst">
<h1>[% Translate("Restricted Services") | html %]</h1>
[% BreadcrumbPath = [
{
Name => Translate('Restricted Services'),
Link => Env("Action"),
},
]
%]
[% INCLUDE "Breadcrumb.tt" Path = BreadcrumbPath %]
<div class="ContentColumn">
<div class="WidgetSimple">
<div class="Content">
<form action="[% Env("CGIHandle") %]?Action=[% Env("Action") %];SubAction=Update" method="post" class="Validate">
<table class="DataTable">
<thead>
<tr>
<th>[% Translate("Type") | html %]</th>
<th>[% Translate("Service") | html %]</th>
</tr>
</thead>
<tbody>
[% RenderBlockStart("OverviewListRow") %]
<tr>
<td>
<select name="Service[% Data.ServiceID %]">
<option [% Data.Restricted %] value="Restricted">[% Translate("Restricted") | html %]</option>
<option [% Data.Public %] value="Public">[% Translate("Public") | html %]</option>
</select>
</td>
<td>[% Data.LevelSpace | html %][% Data.Name | html %]</td>
</tr>
[% RenderBlockEnd("OverviewListRow") %]
</tbody>
</table>
<div class="Clear"></div>
<div class="Field SpacingTop">
<button class="Primary" type="submit" value="[% Translate("Submit") | html %]">[% Translate("Submit") | html %]</button>
[% Translate("or") | html %]
<a href="[% Env("Baselink") %]Action=[% Env("Action") %]">[% Translate("Cancel") | html %]</a>
</div>
<div class="Clear"></div>
</form>
</div>
</div>
</div>
<div class="Clear"></div>
</div>