Bug 32910: (follow-up) Replace v4 icon names with v6
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / marc_modification_templates.tt
1 [% USE raw %]
2 [% USE JSON.Escape %]
3 [% USE Asset %]
4 [% USE TablesSettings %]
5 [% SET footerjs = 1 %]
6 [% INCLUDE 'doc-head-open.inc' %]
7 <title>MARC modification templates &rsaquo; Cataloging &rsaquo; Koha</title>
8 [% INCLUDE 'doc-head-close.inc' %]
9 [% FILTER collapse %]
10     <style>
11         #add_action {
12             display: none;
13         }
14
15         .action_line {
16             margin-bottom: 1em;
17         }
18     </style>
19 [% END %]
20 </head>
21
22 <body id="tools_marc_modification_templates" class="tools">
23 [% WRAPPER 'header.inc' %]
24     [% INCLUDE 'cat-search.inc' %]
25 [% END %]
26
27 [% IF ( TemplatesLoop ) %]
28     [% FOREACH TemplatesLoo IN TemplatesLoop %]
29         [% IF ( TemplatesLoo.selected ) %]
30             [% SET template_name = TemplatesLoo.name %]
31         [% END %]
32     [% END %]
33 [% END %]
34
35 [% WRAPPER 'sub-header.inc' %]
36     [% WRAPPER breadcrumbs %]
37         [% WRAPPER breadcrumb_item %]
38             <a href="/cgi-bin/koha/cataloguing/cataloging-home.pl">Cataloging</a>
39         [% END %]
40
41         [% IF ( template_name ) %]
42             [% WRAPPER breadcrumb_item %]
43                 <a href="/cgi-bin/koha/tools/marc_modification_templates.pl">MARC modification templates</a>
44             [% END %]
45             [% WRAPPER breadcrumb_item bc_active= 1 %]
46                 [% template_name | html %]
47             [% END %]
48         [% ELSE %]
49             [% WRAPPER breadcrumb_item bc_active= 1 %]
50                 <span>MARC modification templates</span>
51             [% END %]
52         [% END %]
53     [% END #/ WRAPPER breadcrumbs %]
54 [% END #/ WRAPPER sub-header.inc %]
55
56 <div class="main container-fluid">
57     <div class="row">
58         <div class="col-sm-10 col-sm-push-2">
59             <main>
60
61             <div id="toolbar" class="btn-toolbar">
62                 <a href="#" data-toggle="modal" data-template_id="" data-target="#createTemplate" id="new_template" class="btn btn-default duplicate_template"><i class="fa fa-plus"></i> New template</a>
63                 [% IF ( template_id != '' ) %]
64                     <a href="#" class="btn btn-default new_action"><i class="fa fa-plus"></i> New action</a>
65                     <a class="btn btn-default delete_template" href="/cgi-bin/koha/tools/marc_modification_templates.pl?template_id=[% template_id | html %]&amp;op=delete_template"><i class="fa fa-fw fa-trash-can"></i> Delete template</a>
66                 [% END %]
67             </div>
68
69             [% IF error %]
70                 [% IF error == 'no_from_field' %]
71                     <div class="dialog message">Error: no field value specified.</div>
72                 [% END %]
73             [% END %]
74
75             [% IF ( TemplatesLoop ) %]
76
77                 [% IF ( template_id == '' ) %]
78
79                     <h1>MARC modification templates [% template_id | html %]</h1>
80
81                     <div class="page-section">
82                         <table id="templatest">
83                             <thead>
84                                 <tr>
85                                     <th>Id</th>
86                                     <th>Template</th>
87                                     <th class="NoSort noExport">Actions</th>
88                                 </tr>
89                             </thead>
90                             <tbody>
91                                 [% FOREACH TemplatesLoo IN TemplatesLoop %]
92                                     <tr>
93                                         <td>[% TemplatesLoo.template_id | html %]</td>
94                                         <td>[% TemplatesLoo.name | html %]</td>
95                                         <td class="actions">
96                                             <a class="btn btn-default btn-xs" href="/cgi-bin/koha/tools/marc_modification_templates.pl?template_id=[% TemplatesLoo.template_id | html %]&amp;op=select_template" ><i class="fa fa-fw fa-pencil-alt"></i> Edit actions</a>
97                                             <a class="btn btn-default btn-xs duplicate_template" href="#" data-toggle="modal" data-template_id="[% TemplatesLoo.template_id | html %]" data-target="#createTemplate"><i class="fa fa-fw fa-copy"></i> Duplicate</a>
98                                             <a class="btn btn-default btn-xs delete_template" href="/cgi-bin/koha/tools/marc_modification_templates.pl?template_id=[% TemplatesLoo.template_id | html %]&amp;op=delete_template"><i class="fa fa-fw fa-trash-can"></i> Delete</a>
99                                         </td>
100                                     </tr>
101                                 [% END %]
102                             </tbody>
103                         </table>
104                     </div> <!-- /.page-section -->
105
106                 [% ELSE %]
107
108                     <h1>Actions for <em>[% template_name | html %]</em></h1>
109
110                     [% IF ( ActionsLoop ) %]
111                         <div class="page-section">
112                             <table id="template_actions" class="template_actions">
113                                 <thead>
114                                     <tr>
115                                         <th>Change order</th>
116                                         <th>Rank</th>
117                                         <th>Action</th>
118                                         <th>Description</th>
119                                         <th>&nbsp;</th>
120                                         <th>&nbsp;</th>
121                                     </tr>
122                                 </thead>
123                                 <tbody>
124                                     [% FOREACH ActionsLoo IN ActionsLoop %]
125                                         <tr>
126                                             <td class="actions">
127                                                 <a title="Move action up" href="marc_modification_templates.pl?op=move_action&amp;where=up&amp;template_id=[% ActionsLoo.template_id | html %]&amp;mmta_id=[% ActionsLoo.mmta_id | html %]">
128                                                     <i class="fa fa-arrow-up fa-lg order-control"></i>
129                                                 </a>
130
131                                                 <a title="Move action to top" href="marc_modification_templates.pl?op=move_action&amp;where=top&amp;template_id=[% ActionsLoo.template_id | html %]&amp;mmta_id=[% ActionsLoo.mmta_id | html %]">
132                                                     <i class="fa fa-arrow-up fa-lg overline order-control"></i>
133                                                 </a>
134
135                                                 <a title="Move action to bottom" href="marc_modification_templates.pl?op=move_action&amp;where=bottom&amp;template_id=[% ActionsLoo.template_id | html %]&amp;mmta_id=[% ActionsLoo.mmta_id | html %]">
136                                                     <i class="fa fa-arrow-down fa-lg underline order-control"></i>
137                                                 </a>
138
139                                                 <a title="Move action down" href="marc_modification_templates.pl?op=move_action&amp;where=down&amp;template_id=[% ActionsLoo.template_id | html %]&amp;mmta_id=[% ActionsLoo.mmta_id | html %]">
140                                                     <i class="fa fa-arrow-down fa-lg order-control"></i>
141                                                 </a>
142                                             </td>
143
144                                             <td>[% ActionsLoo.ordering | html %]</td>
145                                             <td>
146                                                 [% IF ( ActionsLoo.action_delete_field ) %] <span>Delete</span> [% END %]
147                                                 [% IF ( ActionsLoo.action_add_field ) %] <span>Add new</span> [% END %]
148                                                 [% IF ( ActionsLoo.action_update_field ) %] <span>Update existing or add new</span> [% END %]
149                                                 [% IF ( ActionsLoo.action_move_field ) %] <span>Move</span> [% END %]
150                                                 [% IF ( ActionsLoo.action_copy_field ) %] <span>Copy</span> [% END %]
151                                                 [% IF ( ActionsLoo.action_copy_and_replace_field ) %] <span>Copy and replace</span> [% END %]
152
153                                                 [% UNLESS ( ActionsLoo.action_update_field ) %]
154                                                     [% IF ( ActionsLoo.field_number ) %]
155                                                         <span>1st</span>
156                                                     [% END %]
157                                                 [% END %]
158
159                                                 <span>field</span>
160
161                                                 [% ActionsLoo.from_field | html %][% IF ( ActionsLoo.from_subfield.length ) %]$[% ActionsLoo.from_subfield | html %][% END %]
162
163                                                 [% IF ( ActionsLoo.field_value ) %]
164                                                     <span>with value</span> <em>[% ActionsLoo.field_value | html %]</em>
165                                                 [% END %]
166
167                                                 [% IF ( ActionsLoo.to_field ) %]
168                                                     <span>to</span> [% ActionsLoo.to_field | html %][% IF ( ActionsLoo.to_subfield.length ) %]$[% ActionsLoo.to_subfield | html %][% END %]
169
170                                                     [% IF ( ActionsLoo.to_regex_search ) %]
171                                                         <span>using RegEx</span> s<strong>/[% ActionsLoo.to_regex_search | html %]/[% ActionsLoo.to_regex_replace | html %]/[% ActionsLoo.to_regex_modifiers | html %]</strong>
172                                                     [% END %]
173                                                 [% END %]
174
175                                                 [% IF ( ActionsLoo.conditional ) %]
176                                                     [% IF ( ActionsLoo.conditional_if ) %] <span>if</span> [% END %]
177                                                     [% IF ( ActionsLoo.conditional_unless ) %] <span>unless</span> [% END %]
178
179                                                     [% ActionsLoo.conditional_field | html %][% IF ( ActionsLoo.conditional_subfield.length ) %]$[% ActionsLoo.conditional_subfield | html %][% END %]
180
181                                                     [% IF ( ActionsLoo.conditional_comparison_exists ) %] <span>exists</span> [% END %]
182                                                     [% IF ( ActionsLoo.conditional_comparison_not_exists ) %] <span>does not exist</span> [% END %]
183                                                     [% IF ( ActionsLoo.conditional_comparison_equals ) %] <span>matches</span> [% END %]
184                                                     [% IF ( ActionsLoo.conditional_comparison_not_equals ) %] <span>does not match</span> [% END %]
185
186                                                     [% IF ( ActionsLoo.conditional_regex ) %] <span>RegEx</span> m/[% END %]<strong>[% ActionsLoo.conditional_value | html %]</strong>[% IF ( ActionsLoo.conditional_regex ) %]/[% END %]
187                                                 [% END %]
188                                             </td>
189                                             <td>[% ActionsLoo.description | html %]</td>
190                                             <td>
191                                                 <a class="btn btn-default btn-xs edit_action" href="#modaction" data-mmta_id="[% ActionsLoo.mmta_id | html %]"><i class="fa fa-pencil-alt"></i> Edit</a>
192                                             </td>
193                                             <td>
194                                                 <a class="btn btn-default btn-xs" href="marc_modification_templates.pl?template_id=[% ActionsLoo.template_id | html %]&op=delete_action&mmta_id=[% ActionsLoo.mmta_id | html %]" onclick="return confirmDeleteAction();"><i class="fa fa-trash-can"></i> Delete</a>
195                                             </td>
196                                         </tr>
197                                     [% END # /FOREACH ActionsLoo %]
198                                 </tbody>
199                             </table>
200                         </div> <!-- /.page-section -->
201                     [% ELSE %]
202                         <div class="dialog message" id="no_defined_actions">
203                             <p>There are no defined actions for this template.</p>
204                             <p><a href="#" class="btn btn-default approve new_action"><i class="fa fa-plus" aria-hidden="true"></i> New action</a></p>
205                         </div>
206                     [% END # /IF ActionsLoop %]
207
208                     <form method="post" action="/cgi-bin/koha/tools/marc_modification_templates.pl" id="add_action" >
209                         <a name="modaction"></a>
210                         <fieldset>
211                             <legend id="modaction_legend">Add a new action</legend>
212                             <div id="warning_multivalued" style="color:red; display:none;">You have chosen a condition on the same field as the original field. If your records contain multivalued fields it is highly recommended not to do that.</div>
213
214                             <div class="action_line">
215                                 <select name="action" id="action" onchange="onActionChange(this);">
216                                     <option value="delete_field">Delete</option>
217                                     <option value="add_field">Add new</option>
218                                     <option value="update_field">Update existing or add new</option>
219                                     <option value="move_field">Move</option>
220                                     <option value="copy_field">Copy</option>
221                                     <option value="copy_and_replace_field">Copy and replace</option>
222                                 </select>
223
224                                 <span id="field_number_block">
225                                     <select name="field_number" id="field_number">
226                                         <option value="0">All</option>
227                                         <option value="1">1st</option>
228                                     </select>
229                                 </span>
230
231                                 field(s) <input type="text" name="from_field" id="from_field" size="3" maxlength="3" /> <input type="text" name="from_subfield" id="from_subfield" size="1" maxlength="1" title="let blank for the entire field" />
232
233                                 <span name="with_value_block" id="with_value_block" style="display:none;">
234                                     with value <input type="text" name="field_value" id="field_value" />
235                                 </span>
236
237                                 <span name="to_field_block" id="to_field_block" style="display:none;">
238                                     to field <input type="text" name="to_field" id="to_field" size="3" maxlength="3" /> <input type="text" name="to_subfield" id="to_subfield" size="1" maxlength="1" title="let blank for the entire field" />
239
240                                     <span name="to_field_regex_block" id="to_field_regex_block">
241                                         <sup>
242                                             <label for="to_field_regex">RegEx</label>
243                                             <input type="checkbox" name="to_field_regex" id="to_field_regex" onchange="onToFieldRegexChange(this);" />
244
245                                             <span name="to_field_regex_value_block" id="to_field_regex_value_block" style="display:none;">
246                                                 s/<input type="text" name="to_regex_search" id="to_regex_search" placeholder="regex pattern" />/<input type="text" name="to_regex_replace" id="to_regex_replace" placeholder="regex replacement" />/<input type="text" name="to_regex_modifiers" id="to_regex_modifiers" placeholder="ig" size="3" />
247                                             </span>
248                                         </sup>
249                                     </span>
250                                 </span>
251                             </div>
252
253                             <div class="action_line">
254                                 <select name="conditional" id="conditional" onchange="onConditionalChange(this);">
255                                     <option value="" selected="selected" />
256                                     <option value="if">if</option>
257                                     <option value="unless">unless</option>
258                                 </select>
259
260                                 <span name="conditional_block" id="conditional_block" style="display:none;">
261                                     field <input type="text" name="conditional_field" id="conditional_field" size="3" maxlength="3" /> <input type="text" name="conditional_subfield" id="conditional_subfield" size="1" maxlength="1" />
262
263                                     <select name="conditional_comparison" id="conditional_comparison" onchange="onConditionalComparisonChange(this);">
264                                         <option value="" />
265                                         <option value="exists">exists</option>
266                                         <option value="not_exists">doesn't exist</option>
267                                         <option value="equals">matches</option>
268                                         <option value="not_equals">doesn't match</option>
269                                     </select>
270
271                                     <span name="conditional_comparison_block" id="conditional_comparison_block" style="display:none;">
272
273                                         <span class="match_regex_prefix">m/</span><input type="text" id="conditional_value" name="conditional_value" /><span class="match_regex_suffix">/</span>
274
275                                         <sup>
276                                             <label for="conditional_regex">RegEx</label>
277                                             <input type="checkbox" name="conditional_regex" id="conditional_regex" onchange="onConditionalRegexChange(this);" />
278                                         </sup>
279
280                                     </span>
281                                 </span>
282                             </div>
283
284                             <div class="action_line">
285                                 <label for="description">Description:</label>
286                                 <input type="text" name="description" id="description" size="60" />
287                             </div>
288
289                             <fieldset class="action">
290                                 <input type="hidden" name="template_id" value="[% template_id | html %]" />
291                                 <input type="hidden" name="mmta_id" id="mmta_id" />
292                                 <input type="hidden" name="op" value="add_action" />
293                                 <input type="submit" id="action_submit" class="btn btn-primary" value="Add action" />
294                                 <a href="#modaction" class="cancel" id="cancel_edit" onclick="cancelEditAction();">Cancel</a>
295                             </fieldset>
296
297                         </fieldset>
298                     </form>
299
300                 [% END %]
301
302             [% ELSE %]
303                 <h1>MARC modification templates</h1>
304                 <div class="dialog message">
305                     <p>There are no defined templates. Please create a template first.</p>
306                     <a href="#" data-toggle="modal" data-target="#createTemplate" class="btn btn-default"><i class="fa fa-plus" aria-hidden="true"></i> Create a new template</a>
307                 </div>
308             [% END # /IF TemplatesLoop %]
309
310             <!-- Modal to create new template -->
311             <div class="modal" id="createTemplate" tabindex="-1" role="dialog" aria-labelledby="LabelcreateTemplate" aria-hidden="true">
312                 <div class="modal-dialog">
313                 <div class="modal-content">
314                 <div class="modal-header">
315                     <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
316                     <h2 id="LabelcreateTemplate">Create a new template</h2>
317                 </div>
318                 <form method="post" action="/cgi-bin/koha/tools/marc_modification_templates.pl" id="add_template" class="validated">
319                     <div class="modal-body">
320                         <fieldset>
321                             <p>
322                                 <label for="template_name" class="required">Name: </label>
323                                 <input name="template_name" id="template_name" type="text" size="30" required="required" class="required" />
324                                 <span class="required">Required</span>
325                             </p>
326
327                             <input type="hidden" name="op" value="create_template" />
328
329                             <p>
330                                 <label for="duplicate_a_template">Duplicate a template:</label>
331                                 <select name="template_id" id="duplicate_a_template">
332                                     <option value=""> -- None --</option>
333                                     [% FOREACH TemplatesLoo IN TemplatesLoop %]
334                                         <option value="[% TemplatesLoo.template_id | html %]"> [% TemplatesLoo.name | html %]</option>
335                                     [% END %]
336                                 </select>
337                                 <input type="hidden" name="duplicate_current_template" id="duplicate_current_template" />
338                             </p>
339                         </fieldset>
340                     </div>
341                     <div class="modal-footer">
342                         <button type="submit" class="btn btn-default">Submit</button>
343                         <button class="btn btn-link" data-dismiss="modal" aria-hidden="true">Cancel</button>
344                     </div>
345                 </form>
346                 </div>
347                 </div>
348             </div>
349
350             </main>
351         </div> <!-- /.col-sm-10.col-sm-push-2 -->
352
353         <div class="col-sm-2 col-sm-pull-10">
354             <aside>
355                 [% INCLUDE 'cat-menu.inc' %]
356             </aside>
357         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
358      </div> <!-- /.row -->
359
360 [% MACRO jsinclude BLOCK %]
361     [% INCLUDE 'datatables.inc' %]
362     [% INCLUDE 'columns_settings.inc' %]
363     <script>
364         table_settings = [% TablesSettings.GetTableSettings('tools', 'marc-modification-templates', 'templatest', 'json') | $raw %];
365         [% IF ActionsLoop %]
366             var mmtas = [% ActionsLoop.json | $raw %]
367         [% END %]
368     </script>
369     [% Asset.js("js/marc_modification_templates.js") | $raw %]
370 [% END %]
371
372 [% INCLUDE 'intranet-bottom.inc' %]