Update copyright date for 2020
[civicrm-core.git] / templates / CRM / Member / Form / Search.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
fee14197 3 | CiviCRM version 5 |
6a488035 4 +--------------------------------------------------------------------+
f299f7db 5 | Copyright CiviCRM LLC (c) 2004-2020 |
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 class="crm-form-block crm-search-form-block">
27 <div class="crm-accordion-wrapper crm-member_search_form-accordion {if $rows}collapsed{/if}">
28 <div class="crm-accordion-header crm-master-accordion-header">
29 {ts}Edit Search Criteria{/ts}
30 </div><!-- /.crm-accordion-header -->
31 <div class="crm-accordion-body">
32 {strip}
33 <table class="form-layout">
0573fd28 34 {include file="CRM/Contact/Form/Search/ContactSearchFields.tpl"}
6a488035
TO
35 {include file="CRM/Member/Form/Search/Common.tpl"}
36
37 <tr>
38 <td colspan="2">{include file="CRM/common/formButtons.tpl"}</td>
39 </tr>
40 </table>
41 {/strip}
42 </div><!-- /.crm-accordion-body -->
43 </div><!-- /.crm-accordion-wrapper -->
44</div><!-- /.crm-form-block -->
45<div class="crm-content-block">
46 {if $rowsEmpty}
47 <div class="crm-results-block crm-results-block-empty">
48 {include file="CRM/Member/Form/Search/EmptyResults.tpl"}
49 </div>
50 {/if}
51
52 {if $rows}
53 <div class="crm-results-block">
54 {* Search request has returned 1 or more matching rows. *}
55
56 {* This section handles form elements for action task select and submit *}
57 <div class="crm-search-tasks">
58 {include file="CRM/common/searchResultTasks.tpl"}
59 </div>
60
61 {* This section displays the rows along and includes the paging controls *}
62 <div id ="memberSearch" class="crm-search-results">
63 {include file="CRM/Member/Form/Selector.tpl" context="Search"}
64 </div>
65 {* END Actions/Results section *}
66 </div>
67 {/if}
68</div>