Merge pull request #2294 from pratik-joshi/CRM-14036_fix
[civicrm-core.git] / templates / CRM / Contact / Form / Search / Criteria / ChangeLog.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="form-item">
27 <table class="form-layout">
28 <tr>
29 <td>
30 <span class="modifiedBy"><label>{ts}Modified By{/ts}</label></span>
31 <span class="hiddenElement addedBy"><label>{ts}Added By{/ts}</label></span>
32 <br/>
33 {$form.changed_by.html}
34 </td>
35 <td width="100%">
36 {$form.log_date.html}
37 <span class="crm-clear-link">(<a href="#" title="unselect"
38 onclick="unselectRadio('log_date', '{$form.formName}');
39 return false;">{ts}clear{/ts}</a>)
40 </span>
41 <br/>
42 </td>
43 </tr>
44 <tr>
45 <td>
46 <span class="modifiedBy"><label>{ts}Modified Between{/ts}</label></span>
47 <span class="hiddenElement addedBy"><label>{ts}Added Between{/ts}</label></span>
48 </td>
49 </tr>
50 <tr>
51 {include file="CRM/Core/DateRange.tpl" fieldName="log_date" from='_low' to='_high'}
52 </tr>
53 </table>
54 </div>
55
56 {literal}
57 <script type="text/javascript">
58 cj(function () {
59 updateChangeLogLabels();
60 });
61
62 cj('[name=log_date]:input').change(function () {
63 updateChangeLogLabels();
64 });
65
66 function updateChangeLogLabels() {
67 var changeType = cj('input[name=log_date]:checked').val();
68 if (changeType == 2) {
69 cj('.addedBy').hide();
70 cj('.modifiedBy').show();
71 }
72 else {
73 if (changeType == 1) {
74 cj('.addedBy').show();
75 cj('.modifiedBy').hide();
76 }
77 }
78 }
79 </script>
80 {/literal}