Merge pull request #22449 from mattwire/phpnotices
[civicrm-core.git] / templates / CRM / common / recentlyViewed.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 recently viewed objects (contacts and other objects like groups, notes, etc. *}
11 <div id="recently-viewed">
12 <ul>
13 <li>{ts}Recently Viewed:{/ts}</li>
14 {foreach from=$recentlyViewed item=item}
15 <li><a href="{$item.url}">{$item.icon}</a><a href="{$item.url}">{$item.title}</a></li>
16 {/foreach}
17 </ul>
18 </div>