streams/view/tpl/chatroomlist.tpl

12 lines
304 B
Smarty
Raw Normal View History

2014-01-29 09:53:15 +00:00
<div class="widget">
<h3>{{$header}}</h3>
2014-01-29 11:16:07 +00:00
{{if $items}}
2014-05-05 03:30:52 +00:00
<table class="chatroomlist">
2014-01-29 11:16:07 +00:00
{{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>
2014-01-29 11:16:07 +00:00
{{/foreach}}
2014-01-29 09:53:15 +00:00
</table>
{{/if}}
</div>