virt2/api/mod/rooms.html

33 lines
1.3 KiB
HTML
Raw Permalink Normal View History

{include file=$header h1="Комнаты" title="Список комнат"}
<table class="table">
{section name=customer loop=$list}
{if $list[customer].id && $list[customer].koll_users<=$list[customer].max_users}
<tr>
<td style="width: 150px;">
<a href="/room/{$list[customer].id}">
{if $list[customer].logo}
<img src="/img/rooms/{$list[customer].logo}" class="img-thumbnail">
{else}
<img src="/api/img/gray/png/no_image.png" class="img-thumbnail">
{/if}
</a>
</td>
<td>
<h4><a href="/room/{$list[customer].id}">{$list[customer].room_name} {if $list[customer].pass}<i class="fa fa-lock" aria-hidden="true"></i>{/if}</a>
{if ($smarty.session.user_id==$list[customer].sozdatel)}
<a href="/room_settings/{$list[customer].id}" title="Настроить комнату"><i class="fas fa-cog" style="font-size:0.8rem;"></i></a>
{/if}
</h4>
<small>
{$list[customer].tematika}<br>
Создатель <a href="/user/{$list[customer].sozdatel}">{$list[customer].avtor}</a> |
Наполненность {$list[customer].koll_users}/{$list[customer].max_users}
</small>
<br><br>
</td>
</tr>
{/if}
{/section}
</table>
<button class="btn btn-outline-dark" data-link="/room_new/">Создать комнату</button>
{include file=$footer}