Merge branch 'rcsheets-docstring-cleanup'
[civicrm-core.git] / templates / CRM / Contact / Page / DedupeException.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.5 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2014 |
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 *}
26
27 <table id="dedupeExceptions" class="display">
28 <thead>
29 <tr class="columnheader">
30 <th>{ts}Contact 1{/ts}</th>
31 <th>{ts}Contact 2 (Duplicate){/ts}</th>
32 <th></th>
33 </tr>
34 </thead>
35 <tbody>
36 {foreach from=$dedupeExceptions item=exception key=id}
37 <tr id="dupeRow_{$id}" class="{cycle values="odd-row,even-row"}">
38 <td>{$exception.main.name}</td>
39 <td>{$exception.other.name}</td>
40 <td><a id='duplicateContacts' href="#" title={ts}Remove Exception{/ts} onClick="processDupes( {$exception.main.id}, {$exception.other.id}, 'nondupe-dupe', 'dedupe-exception' );return false;">&raquo; {ts}Remove Exception{/ts}</a></td>
41 </tr>
42 {/foreach}
43 </tbody>
44 </table>
45 <div class="clear"><br /></div>
46 <div class="action-link">
47 <a href="{crmURL p="civicrm/contact/deduperules" q="reset=1"}" class="button"><span>{ts}Done{/ts}</span></a>
48 </div>
49
50
51 {literal}
52 <script type="text/javascript">
53 //load jQuery data table.
54 cj('#dedupeExceptions').dataTable( {
55 "sPaginationType": "full_numbers",
56 "aaSorting": [[0,'asc'], [1,'asc']],
57 "aoColumns": [{sClass:""},{sClass:""},{bSortable:false}],
58 });
59 </script>
60 {/literal}
61
62 {* process the dupe contacts *}
63 {include file="CRM/common/dedupe.tpl"}