Merge pull request #16474 from sushantpaste/test-for-pr-13809
[civicrm-core.git] / templates / CRM / common / pagerAToZ.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | Copyright CiviCRM LLC. All rights reserved. |
4 | |
5 | This work is published under the GNU AGPLv3 license with some |
6 | permitted exceptions and without any warranty. For full license |
7 | and copyright information, see https://civicrm.org/licensing |
8 +--------------------------------------------------------------------+
9 *}
10 {* Displays alphabetic filter bar for search results. If one more records in resultset starts w/ that letter, item is a link. *}
11 <div id="alpha-filter">
12 <ul>
13 {foreach from=$aToZ item=letter}
14 <li {if $letter.class}class="{$letter.class}"{/if}>{$letter.item}</li>
15 {/foreach}
16 </ul>
17 </div>