Bug 30952: Staff interface redesign (header)
[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; Tools &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 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
37     <ol>
38         <li>
39             <a href="/cgi-bin/koha/mainpage.pl"><i class="fa fa-home"></i></a>
40         </li>
41         <li>
42             <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a>
43         </li>
44
45         [% IF ( template_name ) %]
46             <li>
47                 <a href="/cgi-bin/koha/tools/marc_modification_templates.pl">MARC modification templates</a>
48             </li>
49             <li>
50                 <a href="#" aria-current="page">
51                     [% template_name | html %]
52                 </a>
53             </li>
54         [% ELSE %]
55             <li>
56                 <a href="#" aria-current="page">
57                     MARC modification templates
58                 </a>
59             </li>
60         [% END %]
61     </ol>
62 </nav>
63 [% END %]
64
65 <div class="main container-fluid">
66     <div class="row">
67         <div class="col-sm-10 col-sm-push-2">
68             <main>
69
70             <div id="toolbar" class="btn-toolbar">
71                 <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>
72                 [% IF ( template_id != '' ) %]
73                     <a href="#" id="new_action" class="btn btn-default"><i class="fa fa-plus"></i> New action</a>
74                     <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>
75                 [% END %]
76             </div>
77
78             [% IF error %]
79                 [% IF error == 'no_from_field' %]
80                     <div class="dialog message">Error: no field value specified.</div>
81                 [% END %]
82             [% END %]
83
84             [% IF ( TemplatesLoop ) %]
85
86                 [% IF ( template_id == '' ) %]
87
88                     <h1>MARC modification templates [% template_id | html %]</h1>
89
90                     <table id="templatest">
91                         <thead>
92                             <tr>
93                                 <th>Id</th>
94                                 <th>Template</th>
95                                 <th class="NoSort noExport">Actions</th>
96                             </tr>
97                         </thead>
98                         <tbody>
99                             [% FOREACH TemplatesLoo IN TemplatesLoop %]
100                                 <tr>
101                                     <td>[% TemplatesLoo.template_id | html %]</td>
102                                     <td>[% TemplatesLoo.name | html %]</td>
103                                     <td class="actions">
104                                         <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>
105                                         <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>
106                                         <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>
107                                     </td>
108                                 </tr>
109                             [% END %]
110                         </tbody>
111                     </table>
112
113                 [% ELSE %]
114
115                     <h1>Actions for <em>[% template_name | html %]</em></h1>
116
117                     [% IF ( ActionsLoop ) %]
118
119                         <table id="template_actions" class="template_actions">
120                             <thead>
121                                 <tr>
122                                     <th>Change order</th>
123                                     <th>Rank</th>
124                                     <th>Action</th>
125                                     <th>Description</th>
126                                     <th>&nbsp;</th>
127                                     <th>&nbsp;</th>
128                                 </tr>
129                             </thead>
130                             <tbody>
131                                 [% FOREACH ActionsLoo IN ActionsLoop %]
132                                     <tr>
133                                         <td class="actions">
134                                             <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 %]">
135                                                 <i class="fa fa-arrow-up fa-lg order-control"></i>
136                                             </a>
137
138                                             <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 %]">
139                                                 <i class="fa fa-arrow-up fa-lg overline order-control"></i>
140                                             </a>
141
142                                             <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 %]">
143                                                 <i class="fa fa-arrow-down fa-lg underline order-control"></i>
144                                             </a>
145
146                                             <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 %]">
147                                                 <i class="fa fa-arrow-down fa-lg order-control"></i>
148                                             </a>
149                                         </td>
150
151                                         <td>[% ActionsLoo.ordering | html %]</td>
152                                         <td>
153                                             [% IF ( ActionsLoo.action_delete_field ) %] <span>Delete</span> [% END %]
154                                             [% IF ( ActionsLoo.action_add_field ) %] <span>Add new</span> [% END %]
155                                             [% IF ( ActionsLoo.action_update_field ) %] <span>Update existing or add new</span> [% END %]
156                                             [% IF ( ActionsLoo.action_move_field ) %] <span>Move</span> [% END %]
157                                             [% IF ( ActionsLoo.action_copy_field ) %] <span>Copy</span> [% END %]
158                                             [% IF ( ActionsLoo.action_copy_and_replace_field ) %] <span>Copy and replace</span> [% END %]
159
160                                             [% UNLESS ( ActionsLoo.action_update_field ) %]
161                                                 [% IF ( ActionsLoo.field_number ) %]
162                                                     <span>1st</span>
163                                                 [% END %]
164                                             [% END %]
165
166                                             <span>field</span>
167
168                                             [% ActionsLoo.from_field | html %][% IF ( ActionsLoo.from_subfield.length ) %]$[% ActionsLoo.from_subfield | html %][% END %]
169
170                                             [% IF ( ActionsLoo.field_value ) %]
171                                                 <span>with value</span> <em>[% ActionsLoo.field_value | html %]</em>
172                                             [% END %]
173
174                                             [% IF ( ActionsLoo.to_field ) %]
175                                                 <span>to</span> [% ActionsLoo.to_field | html %][% IF ( ActionsLoo.to_subfield.length ) %]$[% ActionsLoo.to_subfield | html %][% END %]
176
177                                                 [% IF ( ActionsLoo.to_regex_search ) %]
178                                                      <span>using RegEx</span> s<strong>/[% ActionsLoo.to_regex_search | html %]/[% ActionsLoo.to_regex_replace | html %]/[% ActionsLoo.to_regex_modifiers | html %]</strong>
179                                                 [% END %]
180                                             [% END %]
181
182                                             [% IF ( ActionsLoo.conditional ) %]
183                                                 [% IF ( ActionsLoo.conditional_if ) %] <span>if</span> [% END %]
184                                                 [% IF ( ActionsLoo.conditional_unless ) %] <span>unless</span> [% END %]
185
186                                                 [% ActionsLoo.conditional_field | html %][% IF ( ActionsLoo.conditional_subfield.length ) %]$[% ActionsLoo.conditional_subfield | html %][% END %]
187
188                                                 [% IF ( ActionsLoo.conditional_comparison_exists ) %] <span>exists</span> [% END %]
189                                                 [% IF ( ActionsLoo.conditional_comparison_not_exists ) %] <span>does not exist</span> [% END %]
190                                                 [% IF ( ActionsLoo.conditional_comparison_equals ) %] <span>matches</span> [% END %]
191                                                 [% IF ( ActionsLoo.conditional_comparison_not_equals ) %] <span>does not match</span> [% END %]
192
193                                                 [% IF ( ActionsLoo.conditional_regex ) %] <span>RegEx</span> m/[% END %]<strong>[% ActionsLoo.conditional_value | html %]</strong>[% IF ( ActionsLoo.conditional_regex ) %]/[% END %]
194                                             [% END %]
195                                         </td>
196                                         <td>[% ActionsLoo.description | html %]</td>
197                                         <td>
198                                             <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>
199                                         </td>
200                                         <td>
201                                             <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>
202                                         </td>
203                                     </tr>
204                                 [% END # /FOREACH ActionsLoo %]
205                             </tbody>
206                         </table>
207                     [% ELSE %]
208                         <div class="dialog message template_actions"><p>There are no defined actions for this template.</p></div>
209                     [% END # /IF ActionsLoop %]
210
211                     <form method="post" action="/cgi-bin/koha/tools/marc_modification_templates.pl" id="add_action" >
212                         <a name="modaction"></a>
213                         <fieldset>
214                             <legend id="modaction_legend">Add a new action</legend>
215                             <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>
216
217                             <div class="action_line">
218                                 <select name="action" id="action" onchange="onActionChange(this);">
219                                     <option value="delete_field">Delete</option>
220                                     <option value="add_field">Add new</option>
221                                     <option value="update_field">Update existing or add new</option>
222                                     <option value="move_field">Move</option>
223                                     <option value="copy_field">Copy</option>
224                                     <option value="copy_and_replace_field">Copy and replace</option>
225                                 </select>
226
227                                 <span id="field_number_block">
228                                     <select name="field_number" id="field_number">
229                                         <option value="0">All</option>
230                                         <option value="1">1st</option>
231                                     </select>
232                                 </span>
233
234                                 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" />
235
236                                 <span name="with_value_block" id="with_value_block" style="display:none;">
237                                     with value <input type="text" name="field_value" id="field_value" />
238                                 </span>
239
240                                 <span name="to_field_block" id="to_field_block" style="display:none;">
241                                     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" />
242
243                                     <span name="to_field_regex_block" id="to_field_regex_block">
244                                         <sup>
245                                             <label for="to_field_regex">RegEx</label>
246                                             <input type="checkbox" name="to_field_regex" id="to_field_regex" onchange="onToFieldRegexChange(this);" />
247
248                                             <span name="to_field_regex_value_block" id="to_field_regex_value_block" style="display:none;">
249                                                 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" />
250                                             </span>
251                                         </sup>
252                                     </span>
253                                 </span>
254                             </div>
255
256                             <div class="action_line">
257                                 <select name="conditional" id="conditional" onchange="onConditionalChange(this);">
258                                     <option value="" selected="selected" />
259                                     <option value="if">if</option>
260                                     <option value="unless">unless</option>
261                                 </select>
262
263                                 <span name="conditional_block" id="conditional_block" style="display:none;">
264                                     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" />
265
266                                     <select name="conditional_comparison" id="conditional_comparison" onchange="onConditionalComparisonChange(this);">
267                                         <option value="" />
268                                         <option value="exists">exists</option>
269                                         <option value="not_exists">doesn't exist</option>
270                                         <option value="equals">matches</option>
271                                         <option value="not_equals">doesn't match</option>
272                                     </select>
273
274                                     <span name="conditional_comparison_block" id="conditional_comparison_block" style="display:none;">
275
276                                         <span class="match_regex_prefix">m/</span><input type="text" id="conditional_value" name="conditional_value" /><span class="match_regex_suffix">/</span>
277
278                                         <sup>
279                                             <label for="conditional_regex">RegEx</label>
280                                             <input type="checkbox" name="conditional_regex" id="conditional_regex" onchange="onConditionalRegexChange(this);" />
281                                         </sup>
282
283                                     </span>
284                                 </span>
285                             </div>
286
287                             <div class="action_line">
288                                 <label for="description">Description:</label>
289                                 <input type="text" name="description" id="description" size="60" />
290                             </div>
291
292                             <fieldset class="action">
293                                 <input type="hidden" name="template_id" value="[% template_id | html %]" />
294                                 <input type="hidden" name="mmta_id" id="mmta_id" />
295                                 <input type="hidden" name="op" value="add_action" />
296                                 <input id="action_submit" type="submit" value="Add action" />
297                                 <a href="#modaction" class="cancel" id="cancel_edit" onclick="cancelEditAction();">Cancel</a>
298                             </fieldset>
299
300                         </fieldset>
301                     </form>
302
303                 [% END %]
304
305             [% ELSE %]
306                 <h1>MARC modification templates</h1>
307                 <div class="dialog message"><p>There are no defined templates. Please create a template first.</p></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 'tools-menu.inc' %]
356             </aside>
357         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
358      </div> <!-- /.row -->
359
360 [% MACRO jsinclude BLOCK %]
361     [% Asset.js("js/tools-menu.js") | $raw %]
362     [% INCLUDE 'datatables.inc' %]
363     [% INCLUDE 'columns_settings.inc' %]
364     <script>
365         table_settings = [% TablesSettings.GetTableSettings('tools', 'marc-modification-templates', 'templatest', 'json') | $raw %];
366         [% IF ActionsLoop %]
367             var mmtas = [% ActionsLoop.json | $raw %]
368         [% END %]
369     </script>
370     [% Asset.js("js/marc_modification_templates.js") | $raw %]
371 [% END %]
372
373 [% INCLUDE 'intranet-bottom.inc' %]