Просмотр файла style/default/templates/modules/user/smiles.tpl

Размер файла: 1.72Kb
<div class="head">{$title}{if $user.id} / <a href="{$home}/smiles/my">Мои смайлы</a>{/if}</div>
<div class="fon">
    {if $count > 0}
        {if $user.id}<form action="{$smarty.server.REQUEST_URI}" method="post">{/if}
            <table width="100%" border="2" class="table table-striped table-bordered bootstrap-datatable datatable responsive">
                <tr>
                    {if $user.id}<th style="text-align:center;"><b>Выбрать </b></th>{/if}
                    <th style="text-align:center;"><b>Изображение </b></th>
                    <th style="text-align:center;"><b>Код </b></th>
                </tr>
                {foreach from=$arrayrow item=rows}  
                    <tr>  
                        {if $user.id}<td style="text-align:center;">{if $rows.idsmile == 0}<input type="checkbox" value="{$rows.id}" name="select[]"/>{else}выбран{/if}</td>{/if}
                        <td style="text-align:center;"><img src="{$home}/files/smiles/{$rows.photo}"/></td>
                        <td style="text-align:center;">{$rows.code}</td>
                    </tr>
                {/foreach}
            </table>
            {if $user.id}    
                <p><input type="submit" name="ok" value="Выбрать" class="btn btn-primary"></p>
            </form><br/>{/if}
            {*постраничка*} 
            {if $count > $message}<div class="paging_bootstrap pagination">{$pagenav}</div><br/>{/if}
        {else}
            <div class="alert alert-danger">Смайлов ещё нет...</div>
        {/if} 
    </div>
    <div class="menu"><a href="{$smarty.session.referer}"><i class="fa fa-angle-left"></i> Вернуться назад</a></div>