mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
11 lines
304 B
Smarty
11 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>
|
|
|