Change 'help' id to a class
[civicrm-core.git] / templates / CRM / Contribute / Form / Task / SearchTaskHookSample.tpl
1 {if $rows}
2 <div class="form-item crm-block crm-form-block crm-contribution-form-block">
3 <span class="element-right">{$form.buttons.html}</span>
4 </div>
5
6 <div class="spacer"></div>
7
8 <div>
9 <br />
10 <table>
11 <tr class="columnheader">
12 <th>{ts}Display Name{/ts}</th>
13 <th>{ts}Amount{/ts}</th>
14 <th>{ts}Source{/ts}</th>
15 <th>{ts}Receive Date{/ts}</th>
16 </tr>
17
18 {foreach from=$rows item=row}
19 <tr class="{cycle values="odd-row,even-row"}">
20 <td>{$row.display_name}</td>
21 <td>{$row.amount}</td>
22 <td>{$row.source}</td>
23 <td>{$row.receive_date}</td>
24 </tr>
25 {/foreach}
26 </table>
27 </div>
28
29 <div class="form-item">
30 <span class="element-right">{$form.buttons.html}</span>
31 </div>
32
33 {else}
34 <div class="messages status no-popup">
35 <div class="icon inform-icon"></div>
36 {ts}There are no records selected.{/ts}
37 </div>
38 {/if}