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