8650ef30a67957c2f357b140b8a449371d76ca98
[civicrm-core.git] / templates / CRM / Campaign / Form / Selector.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.7 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2017 |
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 {if $context EQ 'Search'}
27 {include file="CRM/common/pager.tpl" location="top"}
28 {/if}
29
30 {strip}
31 <table class="selector row-highlight">
32 <thead class="sticky">
33 <tr>
34 {if !$single and $context eq 'Search' }
35 <th scope="col" title="Select Rows">{$form.toggleSelect.html}</th>
36 {/if}
37 {foreach from=$columnHeaders item=header}
38
39 <th scope="col">
40 {if $header.sort}
41 {assign var='key' value=$header.sort}
42 {$sort->_response.$key.link}
43 {else}
44 {$header.name}
45 {/if}
46 </th>
47 {/foreach}
48 </tr>
49 </thead>
50
51 {counter start=0 skip=1 print=false}
52 {foreach from=$rows item=row}
53 <tr id='rowid{$row.contact_id}' class="{cycle values="odd-row,even-row"} crm-campaign">
54 {if !$single }
55 {if $context eq 'Search' }
56 {assign var=cbName value=$row.checkbox}
57 <td>{$form.$cbName.html}</td>
58 {/if}
59 <td>{$row.contact_type} &nbsp;<a href="{crmURL p='civicrm/contact/view' q="reset=1&cid=`$row.contact_id`"}">{$row.sort_name}</a></td>
60 <td>{$row.street_number}</td>
61 <td>{$row.street_name}</td>
62 <td>{$row.street_address}</td>
63 <td>{$row.city}</td>
64 <td>{$row.postal_code}</td>
65 <td>{$row.state_province}</td>
66 <td>{$row.country}</td>
67 <td>{$row.email}</td>
68 <td>{$row.phone}</td>
69 {/if}
70 </tr>
71 {/foreach}
72
73 </table>
74 {/strip}
75
76 {if $context EQ 'Search'}
77 {include file="CRM/common/pager.tpl" location="bottom"}
78 {/if}