1{* note please do not remove ol and li as these are needed for "Show More" button to work *}
2{if count($results) > 0}
3	<ol>
4		{foreach from=$results item=activity}
5			<li>{activity info=$activity}</li>
6		{/foreach}
7	</ol>
8{else}
9	<p class="invalid">{tr}There is no activity to display in this stream.{/tr}</p>
10{/if}
11
12