File: AdminGenericInterfaceWebservice.tt

package info (click to toggle)
otrs2 6.0.32-6
  • links: PTS
  • area: non-free
  • in suites: bullseye
  • size: 197,336 kB
  • sloc: perl: 1,003,018; javascript: 75,060; xml: 70,883; php: 51,819; sql: 22,361; sh: 379; makefile: 51
file content (510 lines) | stat: -rw-r--r-- 31,672 bytes parent folder | download
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
# --
# Copyright (C) 2001-2021 OTRS AG, https://otrs.com/
# Copyright (C) 2012-2021 Znuny GmbH, http://znuny.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("Main") %]
<div class="MainBox ARIARoleMain LayoutFixedSidebar SidebarFirst">
    <h1 class="InvisibleText">[% Translate("Web Service Management") | html %]</h1>

    [% BreadcrumbPath = [
            {
                Name => Translate('Web Service Management'),
                Link => Env("Action"),
            },
        ]
    %]

    [% SWITCH Data.Action %]
        [% CASE 'Add' %]
            [% BreadcrumbPath.push({ Name => Translate("Add Web Service"),}) %]
        [% CASE 'Change' %]
            [% USE EditTitle = String(Translate("Edit Web Service")) %]
            [% BreadcrumbPath.push({ Name => EditTitle.append( ': ', Data.WebserviceData.Name ), }) %]
    [% END %]

    [% INCLUDE "Breadcrumb.tt" Path = BreadcrumbPath %]

    <div class="Clear"></div>
    <div class="SidebarColumn">
[% RenderBlockStart("ActionList") %]
        <div class="WidgetSimple">
            <div class="Header">
                <h2>[% Translate("Actions") | html %]</h2>
            </div>
            <div class="Content">
                <ul class="ActionList">
[% RenderBlockStart("ActionOverview") %]
                    <li>
                        <a href="[% Env("Baselink") %]Action=[% Env("Action") %];Nav=[% Data.Nav | uri %]" class="CallForAction Fullsize Center"><span><i class="fa fa-caret-left"></i>[% Translate("Go to overview") | html %]</span></a>
                    </li>
[% RenderBlockEnd("ActionOverview") %]
[% RenderBlockStart("ActionAdd") %]
                    <li>
                        <form action="[% Env("CGIHandle") %]" method="post">
                            <input type="hidden" name="Action" value="[% Env("Action") %]"/>
                            <input type="hidden" name="Subaction" value="Add"/>
                            <input type="hidden" name="Nav" value="[% Data.Nav | html %]"/>

                            <button class="CallForAction Fullsize Center" type="submit"><span><i class="fa fa-plus-square"></i>[% Translate("Add Web Service") | html %]</span></button>
                        </form>
                    </li>
[% RenderBlockEnd("ActionAdd") %]
[% RenderBlockStart("ActionClone") %]
                    <li>
                        <button id="CloneButton" class="CallForAction Fullsize Center HideActionOnChange" type="submit"><span><i class="fa fa-copy"></i> [% Translate("Clone Web Service") | html %]</span></button>
                        <div class="Hidden" id="CloneDialogContainer">
                            <div id="CloneDialog" class="InnerContent GenericInterfaceDialog">
                                <form id="CloneForm" action="[% Env("CGIHandle") %]" method="post" enctype="multipart/form-data" name="CloneForm" class="Validate PreventMultipleSubmits">
                                    <input type="hidden" name="Action" value="[% Env("Action") %]"/>
                                    <input type="hidden" name="Subaction" value="Clone"/>
                                    <input type="hidden" name="WebserviceID" value="[% Data.WebserviceID | html %]"/>
                                    <fieldset class="TableLike">
                                        <div class="SpacingTop"></div>
                                        <label class="Mandatory" for="CloneName"><span class="Marker">*</span>[% Translate("Name") | html %]:</label>
                                        <div class="Field">
                                            <input id="CloneName" class="CloneName W75pc Validate_Required" type="text" maxlength="250" value="" name="CloneName"/>
                                            <div id="CloneNameError" class="TooltipErrorMessage"><p>[% Translate("This field is required.") | html %]</p></div>
                                            <div class="FieldExplanation">[% Translate("The name must be unique.") | html %]</div>
                                        </div>
                                        <div class="Clear"></div>
                                    </fieldset>
                                </form>
                            </div>
                            <div class="ContentFooter Center">
                                <button class="Primary CallForAction" type="button" id="CloneButtonAction" value="[% Translate("Clone") | html %]"><span>[% Translate("Clone") | html %]</span></button>
                                <button class="CallForAction" type="button" id="CancelCloneButtonAction" value="[% Translate("Cancel") | html %]"><span>[% Translate("Cancel") | html %]</span></button>
                            </div>
                        </div>
                    </li>
[% RenderBlockEnd("ActionClone") %]
[% RenderBlockStart("ActionExport") %]
                    <li>
                        <form action="[% Env("CGIHandle") %]" method="post">
                            <input type="hidden" name="Action" value="[% Env("Action") %]"/>
                            <input type="hidden" name="Subaction" value="Export"/>
                            <input type="hidden" name="WebserviceID" value="[% Data.WebserviceID | html %]"/>
                            <input type="hidden" name="Nav" value="[% Data.Nav | html %]"/>

                            <button class="CallForAction Fullsize Center HideActionOnChange" type="submit"><span><i class="fa fa-download"></i> [% Translate("Export Web Service") | html %]</span></button>
                        </form>
                    </li>
[% RenderBlockEnd("ActionExport") %]
[% RenderBlockStart("ActionImport") %]
                    <li>
                        <button id="ImportButton" class="CallForAction Fullsize Center" type="button"><span><i class="fa fa-upload"></i> [% Translate("Import web service") | html %]</span></button>
                        <div class="Hidden" id="ImportDialogContainer">
                            <div id="ImportDialog" class="InnerContent GenericInterfaceDialog">
                                <form id="ImportForm" action="[% Env("CGIHandle") %]" method="post" enctype="multipart/form-data" name="ImportForm" class="Validate PreventMultipleSubmits">
                                    <input type="hidden" name="Action" value="[% Env("Action") %]"/>
                                    <input type="hidden" name="Subaction" value="Import"/>
                                    <fieldset class="TableLike">
                                        <div class="SpacingTop"></div>
                                        <label class="Mandatory" for="ConfigFile"><span class="Marker">*</span>[% Translate("Configuration File") | html %]:</label>
                                        <div class="Field">
                                            <input id="ConfigFile" class="Validate_Required" type="file" maxlength="250" value="" name="ConfigFile"/>
                                            <div id="ConfigFileError" class="TooltipErrorMessage"><p>[% Translate("This field is required.") | html %]</p></div>
                                            <div class="FieldExplanation">[% Translate("The file must be a valid web service configuration YAML file.") | html %]</div>
                                        </div>
                                        <div class="Clear"></div>

                                        <label for="WebserviceName">[% Translate("Name") | html %]:</label>
                                        <div class="Field">
                                            <input id="WebserviceName" class="W100pc" type="text" maxlength="250" value="" name="WebserviceName" />
                                            <div class="FieldExplanation">[% Translate("Here you can specify a name for the webservice. If this field is empty, the name of the configuration file is used as name.") | html %]</div>
                                        </div>
                                        <div class="Clear"></div>
                                    </fieldset>
                                </form>
                            </div>
                            <div class="ContentFooter Center">
                                <button class="Primary CallForAction" type="submit" id="ImportButtonAction" value="[% Translate("Import") | html %]"><span>[% Translate("Import") | html %]</span></button>
                                <button class="CallForAction" type="button" id="CancelImportButtonAction" value="[% Translate("Cancel") | html %]"><span>[% Translate("Cancel") | html %]</span></button>
                            </div>
                        </div>
                    </li>
[% RenderBlockEnd("ActionImport") %]
[% RenderBlockStart("ActionHistory") %]
                    <li>
                        <form action="[% Env("CGIHandle") %]" method="post">
                            <input type="hidden" name="Action" value="AdminGenericInterfaceWebserviceHistory"/>
                            <input type="hidden" name="WebserviceID" value="[% Data.WebserviceID | html %]"/>
                            <input type="hidden" name="Nav" value="[% Data.Nav | html %]"/>

                            <button class="CallForAction Fullsize Center HideActionOnChange" type="submit"><span><i class="fa fa-clock-o"></i> [% Translate("Configuration History") | html %]</span></button>
                        </form>
                    </li>
[% RenderBlockEnd("ActionHistory") %]
[% RenderBlockStart("ActionDelete") %]
                    <li>
                        <button id="DeleteButton" class="CallForAction Fullsize Center" type="button"><span><i class="fa fa-trash-o"></i> [% Translate("Delete web service") | html %]</span></button>
                        <div class="Hidden" id="DeleteDialogContainer">
                            <div id ="DeleteDialog" class="InnerContent GenericInterfaceDialog">
                                <span class="WarningDialog ">&nbsp;</span>
                                <p class="Center Warning">[% Translate("Do you really want to delete this web service?") | html %]</p>
                                <div class="SpacingTop"></div>
                            </div>
                        </div>
                    </li>
[% RenderBlockEnd("ActionDelete") %]
[% RenderBlockStart("ActionDebugger") %]
                    <li>
                        <form action="[% Env("CGIHandle") %]" method="post">
                            <input type="hidden" name="Action" value="AdminGenericInterfaceDebugger"/>
                            <input type="hidden" name="WebserviceID" value="[% Data.WebserviceID | html %]"/>
                            <input type="hidden" name="Nav" value="[% Data.Nav | html %]"/>

                            <button class="CallForAction Fullsize Center HideActionOnChange" type="submit"><span><i class="fa fa-bug"></i> [% Translate("Debugger") | html %]</span></button>
                        </form>
                    </li>
[% RenderBlockEnd("ActionDebugger") %]
                </ul>

            </div>
        </div>
[% RenderBlockEnd("ActionList") %]
[% RenderBlockStart("ExampleWebServices") %]
        <div class="WidgetSimple" id="ExampleWebServices">
            <div class="Header">
                <h2>[% Translate("Ready2Adopt Web Services") | html %]</h2>
            </div>
            <div class="Content">
            [% IF Data.ExampleWebServiceList %]
                <ul class="ActionList SpacingTop">
                    <li>
                        <form action="[% Env("CGIHandle") %]" method="post" enctype="multipart/form-data" class="Validate PreventMultipleSubmits">
                            <input type="hidden" name="Action" value="[% Env("Action") %]"/>
                            <input type="hidden" name="Subaction" value="Import"/>
                            [% Data.ExampleWebServiceList %]
                            <div id="ExampleWebServiceError" class="TooltipErrorMessage"><p>[% Translate("This field is required.") | html %]</p></div>
                            <div id="ExampleWebServiceServerError" class="TooltipErrorMessage"><p>[% Translate("This field is required.") | html %]</p></div>

                            <button class="CallForAction Fullsize Center SpacingTop" type="submit" value="[% Translate("Import Ready2Adopt web service") | html %]">
                                <span><i class="fa fa-upload"></i>[% Translate("Import Ready2Adopt web service") | html %]</span>
                            </button>
                        </form>
                    </li>
                </ul>
            [% END %]
            </div>
        </div>
[% RenderBlockEnd("ExampleWebServices") %]
[% RenderBlockStart("Hint") %]
        <div class="WidgetSimple">
            <div class="Header">
                <h2>[% Translate("Hint") | html %]</h2>
            </div>
            <div class="Content">
                <p class="FieldExplanation">
                    [% Translate("After you save the configuration you will be redirected again to the edit screen.") | html %]
                </p>
                <p class="FieldExplanation">
                    [% Translate("If you want to return to overview please click the \"Go to overview\" button.") | html %]
                </p>
            </div>
        </div>
[% RenderBlockEnd("Hint") %]
    </div>
    <div class="ContentColumn">
[% RenderBlockStart("OverviewHeader") %]
        <div class="WidgetSimple">
            <div class="Header">
                <h2>[% Translate("List") | html %]</h2>
            </div>
[% RenderBlockEnd("OverviewHeader") %]
[% RenderBlockStart("OverviewResult") %]
            <div class="Content ">
                <table class="DataTable" id="WebserviceTable" summary="List of all registered Webservices">
                    <thead>
                        <tr>
                            <th>[% Translate("Name") | html %]</th>
                            <th>[% Translate("Description") | html %]</th>
                            <th>[% Translate("Remote system") | html %]</th>
                            <th>[% Translate("Provider transport") | html %]</th>
                            <th>[% Translate("Requester transport") | html %]</th>
                            <th>[% Translate("Validity") | html %]</th>
                        </tr>
                    </thead>
                    <tbody>
[% RenderBlockStart("NoDataFoundMsg") %]
                        <tr>
                            <td colspan="5">
                                [% Translate("No data found.") | html %]
                            </td>
                        </tr>
[% RenderBlockEnd("NoDataFoundMsg") %]

[% RenderBlockStart("OverviewResultRow") %]
                        <tr [% IF Data.Valid != "valid"%]class="Invalid"[% END %]>
                            <td>
                                <a class="AsBlock" href="[% Env("Baselink") %]Action=[% Env("Action") %];Subaction=Change;WebserviceID=[% Data.ID | uri %];Nav=[% Data.Nav | uri %]">[% Data.Name | html %]</a>
                            </td>
                            <td>[% Translate(Data.Description) | html %]</td>
                            <td>[% Translate(Data.RemoteSystem) | html %]</td>
                            <td>[% Translate(Data.ProviderTransport) | html %]</td>
                            <td>[% Translate(Data.RequesterTransport) | html %]</td>
                            <td>[% Translate(Data.Valid) | html %]</td>
                        </tr>
[% RenderBlockEnd("OverviewResultRow") %]

                    </tbody>
                </table>
            </div>
        </div>
[% RenderBlockEnd("OverviewResult") %]
[% RenderBlockStart("Details") %]
        <form action="[% Env("CGIHandle") %]" method="post" class="Validate PreventMultipleSubmits">
            <input type="hidden" name="Action" value="[% Env("Action") %]"/>
            <input type="hidden" name="Subaction" value="[% Data.Action | html %]Action"/>
            <input type="hidden" name="WebserviceID" value="[% Data.WebserviceID | html %]" id="WebserviceID"/>
            [% IF Data.Action == 'Change' %]
                <input type="hidden" name="ContinueAfterSave" id="ContinueAfterSave" value=""/>
            [% END %]
            <div class="WidgetSimple">
                <div class="Header">
                    <h2>[% Translate("General") | html %]</h2>
                </div>
                <div class="Content">
                    <div class="LayoutGrid ColumnsWithSpacing">
                        <div class="Size1of2">
                            <fieldset class="TableLike">
                                <label class="Mandatory" for="Name"><span class="Marker">*</span> [% Translate("Name") | html %]:</label>
                                <div class="Field">
                                    <input id="Name" class="W50pc [% Data.NameServerError | html %] Validate_Required HideTrigger" type="text" maxlength="250" value="[% Data.Name | html %]" name="Name"/>
                                    <div id="NameError" class="TooltipErrorMessage"><p>[% Translate("This field is required.") | html %]</p></div>
                                    <div id="NameServerError" class="TooltipErrorMessage"><p>[% Translate(Data.NameServerErrorMessage) | html %]</p></div>
                                </div>
                                <div class="Clear"></div>

                                <label for="Description">[% Translate("Description") | html %]:</label>
                                <div class="Field">
                                    <input id="Description" class="W50pc HideTrigger" type="text" maxlength="250" value="[% Data.Description | html %]" name="Description"/>
                                </div>
                                <div class="Clear"></div>

                                <label for="RemoteSystem">[% Translate("Remote system") | html %]:</label>
                                <div class="Field">
                                    <input id="RemoteSystem" class="W50pc HideTrigger" type="text" maxlength="250" value="[% Data.RemoteSystem | html %]" name="RemoteSystem"/>
                                </div>
                                <div class="Clear"></div>
                            </fieldset>
                        </div>
                        <div class="Size1of2">
                            <fieldset class="TableLike">
                                <label for="DebugThreshold">[% Translate("Debug threshold") | html %]:</label>
                                <div class="Field">
                                    [% Data.DebugThresholdStrg %]
                                </div>
                                <div class="Clear"></div>

                                <label for="ValidID">[% Translate("Validity") | html %]:</label>
                                <div class="Field">
                                    [% Data.ValidtyStrg %]
                                </div>
                                <div class="Clear"></div>
                            </fieldset>
                        </div>
                    </div>
                </div>
            </div>
[% RenderBlockStart("DetailsCommunicationType") %]
            <div class="WidgetSimple Expanded">
                <div class="Header">
                    <div class="WidgetAction Toggle">
                        <a href="#" title="[% Translate("Show or hide the content") | html %]"><i class="fa fa-caret-right"></i><i class="fa fa-caret-down"></i></a>
                    </div>
                    <h3>[% Translate(Data.Title) | html %]</h3>
                </div>
                <div class="Content">
[% RenderBlockStart("DetailsCommunicationTypeExplanationProvider") %]
                    <p class="FieldExplanation">
                                [% Translate("In provider mode, OTRS offers web services which are used by remote systems.") | html %]
                    </p>
[% RenderBlockEnd("DetailsCommunicationTypeExplanationProvider") %]
[% RenderBlockStart("DetailsCommunicationTypeExplanationRequester") %]
                    <p class="FieldExplanation">
                                [% Translate("In requester mode, OTRS uses web services of remote systems.") | html %]
                    </p>
[% RenderBlockEnd("DetailsCommunicationTypeExplanationRequester") %]
                    <h4 class="SpacingTop SpacingBottom">[% Translate("Settings") | html %]</h4>
                    <fieldset class="TableLike">
                        <label for="[% Data.CommunicationType | html %]TransportList">[% Translate("Network transport") | html %]:</label>
                        <div class="Field">
                                    [% Data.TransportsStrg %]
[% RenderBlockStart("DetailsTransportPropertiesButton") %]
                            <button type="button" id="[% Data.CommunicationType | html %]TransportProperties" class="HideOnChange CallForAction Inline" value="Configure"><span>[% Translate("Configure") | html %]</span></button>
[% RenderBlockEnd("DetailsTransportPropertiesButton") %]
                        </div>
                    </fieldset>

                    <h4 class="SpacingTop SpacingBottom">[% Translate("Error Handling Modules") | html %]</h4>

                    <p class="FieldExplanation">
                                [% Translate("Error handling modules are used to react in case of errors during the communication. Those modules are executed in a specific order, which can be changed by drag and drop.") | html %]
                    </p>

                    <table class="DataTable ErrorHandlingPriority" id="[% Data.ActionsTitle | html %]Table" data-query-string="Action=AdminGenericInterfaceErrorHandlingDefault;Subaction=PriorityAction;CommunicationType=[% Data.CommunicationType | uri %];WebserviceID=[% Data.WebserviceID | uri %];[% Env('ChallengeTokenParam') | html %]">
                        <thead>
                            <tr>
                                <th width="10px">[% Translate("#") | html %]</th>
                                <th>[% Translate("Name") | html %]</th>
                                <th>[% Translate("Description") | html %]</th>
                                <th>[% Translate("Backend") | html %]</th>
                            </tr>
                        </thead>
                        <tbody>
[% RenderBlockStart("ErrorHandlingRow") %]
                            <tr id="[% Data.ErrorHandling | html %]">
                                <td></td>
                                <td>
                                    <a class="AsBlock" href="[% Env("Baselink") %]Action=[% Data.Dialog | uri %];CommunicationType=[% Data.CommunicationType | uri %];ErrorHandling=[% Data.ErrorHandling | uri %];Subaction=Change;WebserviceID=[% Data.WebserviceID | uri %];ErrorHandlingType=[% Data.ErrorHandlingType | uri %]">
                                        [% Data.ErrorHandling | html %]
                                    </a>
                                </td>
                                <td>[% Data.Description | html %]</td>
                                <td>[% Data.ErrorHandlingType | html %]</td>
                            </tr>
[% RenderBlockEnd("ErrorHandlingRow") %]
[% RenderBlockStart("ErrorHandlingRowNoDataFoundMsg") %]
                            <tr>
                                <td></td>
                                <td colspan="4">
                                            [% Translate("No data found.") | html %]
                                </td>
                            </tr>
[% RenderBlockEnd("ErrorHandlingRowNoDataFoundMsg") %]
                        </tbody>
                    </table>

                    <fieldset class="TableLike HideOnChange SpacingTop">
                        <label for="[% Data.CommunicationType | html %]ErrorHandling">[% Translate("Add error handling module") | html %]:</label>
                        <div class="Field">
                                    [% Data.ErrorHandlingStrg %]
                        </div>
                        <div class="Clear"></div>
                    </fieldset>

                    <h4 class="SpacingTop SpacingBottom">[% Translate(Data.ActionsTitle) | html %]</h4>

[% RenderBlockStart("DetailsCommunicationTypeActionsExplanationProvider") %]
                    <p class="FieldExplanation">
                                [% Translate("Operations are individual system functions which remote systems can request.") | html %]
                    </p>
[% RenderBlockEnd("DetailsCommunicationTypeActionsExplanationProvider") %]
[% RenderBlockStart("DetailsCommunicationTypeActionsExplanationRequester") %]
                    <p class="FieldExplanation">
                                [% Translate("Invokers prepare data for a request to a remote web service, and process its response data.") | html %]
                    </p>
[% RenderBlockEnd("DetailsCommunicationTypeActionsExplanationRequester") %]

                    <table class="DataTable" id="[% Data.ActionsTitle | html %]Table" summary="list of [% Data.ActionsTitle | html %]">
                        <thead>
                            <tr>
                                <th>[% Translate("Name") | html %]</th>
                                <th>[% Translate("Description") | html %]</th>
                                <th>[% Translate("Controller") | html %]</th>
                                <th>[% Translate("Inbound mapping") | html %]</th>
                                <th>[% Translate("Outbound mapping") | html %]</th>
                            </tr>
                        </thead>
                        <tbody>
[% RenderBlockStart("DetailsActionsRow") %]
                            <tr>
                                <td>
[% RenderBlockStart("DetailsActionsRowLink") %]
                                    <a class="AsBlock HideLinkOnChange" href="[% Env("Baselink") %]Action=[% Data.Module | uri %];[% Data.ActionType | uri %]=[% Data.Name | uri %];Subaction=Change;WebserviceID=[% Data.WebserviceID | uri %];Nav=[% Data.Nav | uri %]">
                                                [% Data.Name | html %]
                                    </a>
[% RenderBlockEnd("DetailsActionsRowLink") %]
[% RenderBlockStart("DetailsActionsRowDelete") %]
                                    <a id="Delete[% Data.ActionType | html %][% Data.Name | html %]" class="TrashCan Delete[% Data.ActionType | html %]" href="#" title="[% Translate("Delete this action") | html %]">
                                                [% Translate("Delete this action") | html %]
                                        <i class="fa fa-trash-o"></i>
                                    </a>
                                    <span>
                                                [% Data.Name | html %]
                                    </span>
[% RenderBlockEnd("DetailsActionsRowDelete") %]
                                </td>
                                <td>[% Translate(Data.Description) | html %]</td>
                                <td class="[% Data.ControllerClass | html %]">[% Data.Controller | html %]</td>
                                <td>[% Translate(Data.MappingInbound) | html %]</td>
                                <td>[% Translate(Data.MappingOutbound) | html %]</td>
                            </tr>
[% RenderBlockEnd("DetailsActionsRow") %]
[% RenderBlockStart("DetailsActionsNoDataFoundMsg") %]
                            <tr>
                                <td colspan="5">
                                            [% Translate("No data found.") | html %]
                                </td>
                            </tr>
[% RenderBlockEnd("DetailsActionsNoDataFoundMsg") %]
                        </tbody>
                    </table>
[% RenderBlockStart("DetailsActionsNoControllerFoundMsg") %]
                    <div class="SpacingTop"></div>
                    <p class="Error">
                                [% Translate("At least one %s has a controller that is either not active or not present, please check the controller registration or delete the %s", Data.ActionType, Data.ActionType) | html %]
                    </p>
[% RenderBlockEnd("DetailsActionsNoControllerFoundMsg") %]
                    <div class="SpacingTop"></div>
                    <fieldset class="TableLike HideOnChange">
                        <label for="[% Data.ActionType | html %]List">[% Translate("Add") | html %] [% Translate(Data.ActionType) | html %]:</label>
                        <div class="Field">
                                    [% Data.ControllersStrg %]
                        </div>
                        <div class="Clear"></div>
                    </fieldset>
                </div>
            </div>

[% RenderBlockEnd("DetailsCommunicationType") %]

            <div class="WidgetSimple">
                <div class="Header">
                    <h2>[% Translate("Save") | html %]</h2>
                </div>
                <div class="Content">
                    <fieldset class="TableLike">
                        <div class="Field SpacingTop">
                            [% IF Data.Action == 'Change' %]
                                <button class="CallForAction Primary" id="SubmitAndContinue" type="button" value="[% Translate("Save") | html %]"><span>[% Translate("Save") | html %]</span></button>
                                [% Translate("or") | html %]
                                <button class="CallForAction Primary" id="Submit" type="submit" value="[% Translate("Save") | html %]"><span>[% Translate("Save and finish") | html %]</span></button>
                            [% ELSE %]
                                <button class="CallForAction Primary" id="Submit" type="submit" value="[% Translate("Save") | html %]"><span>[% Translate("Save") | html %]</span></button>
                            [% END %]
                            [% Translate("or") | html %]
                            <a href="[% Env("Baselink") %]Action=[% Env("Action") %]"><span>[% Translate("Cancel") | html %]</span></a>
                        </div>
                        <div class="Clear"></div>
                    </fieldset>
                </div>
            </div>
        </form>

        <div class="Hidden" id="DeleteOperationDialogContainer">
            <div id ="DeleteOperationDialog" class="InnerContent GenericInterfaceDialog">
                <span class="WarningDialog ">&nbsp;</span>
                <p class="Center Warning">[% Translate("Do you really want to delete this operation?") | html %]</p>
                <div class="SpacingTop"></div>
            </div>
        </div>

        <div class="Hidden" id="DeleteInvokerDialogContainer">
            <div id ="DeleteInvokerDialog" class="InnerContent GenericInterfaceDialog">
                <span class="WarningDialog ">&nbsp;</span>
                <p class="Center Warning">[% Translate("Do you really want to delete this invoker?") | html %]</p>
                <div class="SpacingTop"></div>
            </div>
        </div>

[% RenderBlockEnd("Details") %]
    </div>
    <div class="Clear"></div>
</div>
[% RenderBlockEnd("Main") %]