This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/view/tpl/chatroomlist.tpl
2014-05-04 20:30:52 -07:00

12 lines
304 B
Smarty

<div class="widget">
<h3>{{$header}}</h3>
{{if $items}}
<table class="chatroomlist">
{{foreach $items as $item}}
<tr><td align="left"><a href="{{$baseurl}}/chat/{{$nickname}}/{{$item.cr_id}}">{{$item.cr_name}}</a></td><td align="right">{{$item.cr_inroom}}</td></tr>
{{/foreach}}
</table>
{{/if}}
</div>