Bug 15091: DEBT is IMPOSSIBLE, not NEEDSCONFIRMATION
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / tools-overlay-action.inc
1           <select name="overlay_action" id="overlay_action">
2             [% IF ( overlay_action_replace ) %]
3                 <option value="replace"  selected="selected">
4             [% ELSE %]
5                 <option value="replace">
6             [% END %]
7                 Replace existing record with incoming record</option>
8             [% IF ( overlay_action_create_new ) %]
9                 <option value="create_new" selected="selected">
10             [% ELSE %]
11                 <option value="create_new">
12             [% END %]
13                 Add incoming record</option>
14             [% IF ( overlay_action_ignore ) %]
15                 <option value="ignore" selected="selected">
16             [% ELSE %]
17                 <option value="ignore">
18             [% END %]
19                 Ignore incoming record (its items may still be processed)</option>
20         </select>