Bug 30708: Koha controller script and template changes
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / tools-item-action.inc
1         [% IF item_action_ignore AND num_items == 0 %]
2             No items were found during staging
3             <input type ="hidden" name="item_action" value="ignore">
4         [% ELSE %]
5             <select name="item_action" id="item_action">
6             [% IF ( item_action_always_add ) %]
7                 <option value="always_add" selected="selected">
8             [% ELSE %]
9                 <option value="always_add">
10             [% END %]
11                 Always add items</option>
12             [% IF ( item_action_add_only_for_matches ) %]
13                 <option value="add_only_for_matches" selected="selected">
14             [% ELSE %]
15                 <option value="add_only_for_matches">
16             [% END %]
17                 Add items only if matching bib was found</option>
18             [% IF ( item_action_add_only_for_new ) %]
19                 <option value="add_only_for_new" selected="selected">
20             [% ELSE %]
21                 <option value="add_only_for_new">
22             [% END %]
23                 Add items only if no matching bib was found</option>
24             [% IF ( item_action_replace ) %]
25                 <option value="replace" selected="selected">
26             [% ELSE %]
27                 <option value="replace">
28             [% END %]
29                 Replace items if matching bib was found (only for existing items)</option>
30             [% IF ( item_action_ignore ) %]
31                 <option value="ignore" selected="selected">
32             [% ELSE %]
33                 <option value="ignore">
34             [% END %]
35                 Ignore items</option>
36             </select>
37         [% END %]