CRM-13863 - Ajax improvements for relationship tab.
[civicrm-core.git] / templates / CRM / Contact / Page / View / Log.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
232624b1 3 | CiviCRM version 4.4 |
6a488035
TO
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 />
e4d290c4 31 <div id='instance_data'><div class="crm-loading-element"></div></div>
6a488035
TO
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">
e4d290c4
CW
58 CRM.reloadChangeLogTab = function() {
59 cj('#changeLog #instance_data').load({/literal}"{$instanceUrl}"{literal});
60 };
61 cj(function () {
62 CRM.reloadChangeLogTab();
6a488035 63
e4d290c4
CW
64 cj('#changeLog').on('click', '.report-pager .crm-pager-nav a', function(e) {
65 cj('#changeLog #instance_data').block().load(this.href + '&snippet=4&section=2');
66 return false;
6a488035 67 });
6a488035 68
e4d290c4
CW
69 cj('#changeLog').on('click', 'input[name="PagerBottomButton"], input[name="PagerTopButton"]', function(e) {
70 var url = cj('#changeLog #instance_data .report-pager .crm-pager-nav a:first').attr('href') + '&snippet=4&section=2';
71 cj('#changeLog #instance_data').block().load(url + '&crmPID=' + cj(this).siblings('input[type=text]').val());
72 return false;
6a488035 73 });
6a488035
TO
74 });
75
76 </script>
77{/literal}
78{/if}