Always show parent/child nesting in group selectors
[civicrm-core.git] / templates / CRM / Contact / Form / Search / Criteria / ChangeLog.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
819d0d41 3 | CiviCRM version 4.5 |
6a488035 4 +--------------------------------------------------------------------+
819d0d41 5 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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">
41610bdd 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}
41610bdd 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>
8528deee 51
52{literal}
53 <script type="text/javascript">
3cc60a06 54 CRM.$(function($) {
41610bdd 55 updateChangeLogLabels();
8528deee 56 });
57
58 cj('[name=log_date]:input').change(function () {
41610bdd 59 updateChangeLogLabels();
60 });
61
62 function updateChangeLogLabels() {
8528deee 63 var changeType = cj('input[name=log_date]:checked').val();
64 if (changeType == 2) {
41610bdd 65 cj('.addedBy').hide();
66 cj('.modifiedBy').show();
8528deee 67 }
41610bdd 68 else {
69 if (changeType == 1) {
70 cj('.addedBy').show();
71 cj('.modifiedBy').hide();
72 }
8528deee 73 }
41610bdd 74 }
8528deee 75 </script>
76{/literal}