Merge remote-tracking branch 'upstream/4.6' into 4.6-master-2015-10-12-16-00-15
[civicrm-core.git] / templates / CRM / Contact / Form / Search / Criteria / ChangeLog.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.7 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2015 |
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 <br/>
38 </td>
39 </tr>
40 <tr>
41 <td>
42 <span class="modifiedBy"><label>{ts}Modified Between{/ts}</label></span>
43 <span class="hiddenElement addedBy"><label>{ts}Added Between{/ts}</label></span>
44 </td>
45 </tr>
46 <tr>
47 {include file="CRM/Core/DateRange.tpl" fieldName="log_date" from='_low' to='_high'}
48 </tr>
49 </table>
50 </div>
51
52 {literal}
53 <script type="text/javascript">
54 CRM.$(function($) {
55 function updateChangeLogLabels() {
56 var changeType = $('input[name=log_date]:checked').val();
57 if (changeType == 2) {
58 $('.addedBy').hide();
59 $('.modifiedBy').show();
60 }
61 else {
62 if (changeType == 1) {
63 $('.addedBy').show();
64 $('.modifiedBy').hide();
65 }
66 }
67 }
68 $('[name=log_date]:input').change(updateChangeLogLabels);
69 updateChangeLogLabels();
70 });
71
72
73 </script>
74 {/literal}