[18/30] Patron Card Creator toolbar
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / duplicates.inc
1 <div class="dialog alert">
2 <script type="text/javascript">
3 //<![CDATA[
4
5 function confirmnotdup(){
6         $("#confirm_not_duplicate").attr("value","1");
7         // alert(_("Not a duplicate confirmed. Please click on Add biblio to save the record"));
8         var checkform = $("#f");
9         Check(checkform);
10 }
11 //]]>
12 </script>
13
14
15 <h4>Duplicate suspected</h4>
16 <p>Is this a duplicate of 
17         <ul><!--TMPL_LOOP Name="duplicates"-->
18                 <li><a href="<!--TMPL_VAR Name="url"-->?<!--TMPL_VAR Name="field_name"-->=<!-- TMPL_VAR name="dupid" -->" onclick="openWindow('<!--TMPL_VAR Name="url"-->?<!--TMPL_VAR Name="field_name"-->=<!-- TMPL_VAR name="dupid" -->&amp;popup=1', 'Duplicate '; return false;)"><!-- TMPL_VAR name="duplicateinformation" --></a>?
19                 <form action="<!--TMPL_VAR Name="action_dup_yes_url"-->"" method="get">
20                         <input type="hidden" name="<!--TMPL_VAR Name="field_name"-->" value="<!-- TMPL_VAR name="dupid" -->" />
21                         <input type="submit" class="edit" value="Yes: Edit existing" />
22                 </form>
23                 </li>
24         <!--/TMPL_LOOP--></ul>
25 </p>
26 <form action="<!--TMPL_VAR Name="action_dup_no_url"-->" method="get">
27         <input type="submit" class="save" onclick="confirmnotdup(); return false;" value="No: Save as New" />
28 </form>
29 </div>
30