CRM-13863 - Ajax improvements for changelog tab.
[civicrm-core.git] / templates / CRM / Contact / Page / View / Log.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.4 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2013 |
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 <div id="changeLog" class="view-content">
27 <p></p>
28 <div class="bold">{ts}Change Log:{/ts} {$displayName}</div>
29 {if $useLogging}
30 <br />
31 <div class='instance_data'><div class="crm-loading-element"></div></div>
32 {else}
33 <div class="form-item">
34 {if $logCount > 0 }
35 <table>
36 <tr class="columnheader"><th>{ts}Changed By{/ts}</th><th>{ts}Change Date{/ts}</th></tr>
37 {foreach from=$log item=row}
38 <tr class="{cycle values="odd-row,even-row"}">
39 <td> {$row.image}&nbsp;<a href="{crmURL p='civicrm/contact/view' q="action=view&reset=1&cid=`$row.id`"}">{$row.name}</a></td>
40 <td>{$row.date|crmDate}</td>
41 </tr>
42 {/foreach}
43 </table>
44 {else}
45 <div class="messages status no-popup">
46 <div class="icon inform-icon"></div> &nbsp;
47 {ts}No modifications have been logged for this contact.{/ts}
48 </div>
49 {/if}
50 </div>
51 {/if}
52 </p>
53 </div>
54
55 {if $useLogging}
56 {literal}
57 <script type="text/javascript">
58 cj(function ($) {
59 $('#changeLog .instance_data').on('crmLoad', function(e, data) {
60 CRM.tabHeader.updateCount('#tab_log', data.totalRows);
61 });
62 CRM.reloadChangeLogTab = function(url) {
63 if (url) {
64 $('#changeLog .instance_data').crmSnippet({url: url});
65 }
66 $('#changeLog .instance_data').crmSnippet('refresh');
67 };
68 CRM.reloadChangeLogTab({/literal}"{$instanceUrl}"{literal});
69
70 $('#changeLog').on('click', '.report-pager .crm-pager-nav a', function(e) {
71 CRM.reloadChangeLogTab(this.href + '&section=2');
72 return false;
73 });
74
75 $('#changeLog').on('click', 'input[name="PagerBottomButton"], input[name="PagerTopButton"]', function(e) {
76 var url = $('#changeLog .instance_data .report-pager .crm-pager-nav a:first').attr('href') + '&section=2';
77 CRM.reloadChangeLogTab(url + '&crmPID=' + $(this).siblings('input[type=text]').val());
78 return false;
79 });
80 });
81
82 </script>
83 {/literal}
84 {/if}