Files
BESCMS/dayrui/App/Weixin/Views/more_list.html
T

68 lines
3.0 KiB
HTML

{template "header.html"}
<div class="right-card-box">
<form class="form-horizontal" role="form" id="myform">
{dr_form_hidden()}
<div class="table-scrollable">
<table class="table table-striped table-bordered table-hover table-checkable dataTable">
<thead>
<tr class="heading">
{if $ci->_is_admin_auth('del')}
<th class="myselect">
<label class="mt-table mt-checkbox mt-checkbox-single mt-checkbox-outline">
<input type="checkbox" class="group-checkable" data-set=".checkboxes" />
<span></span>
</label>
</th>
{/if}
<th width="80" class="{dr_sorting('id')}" name="id">{dr_lang('Id')}</th>
<th width="200" class="{dr_sorting('name')}" name="name">{dr_lang('名称')}</th>
<th style="text-align:center" width="100">{dr_lang('粉丝数')}</th>
<th>{dr_lang('操作')}</th>
</tr>
</thead>
<tbody>
{loop $list $t}
<tr class="odd gradeX" id="dr_row_{$t.id}">
{if $ci->_is_admin_auth('del')}
<td class="myselect">
<label class="mt-table mt-checkbox mt-checkbox-single mt-checkbox-outline">
<input type="checkbox" class="checkboxes" name="ids[]" value="{$t.id}" />
<span></span>
</label>
</td>
{/if}
<td>{$t.id}</td>
<td>{$t.name}</td>
<td style="text-align:center"> {$t.count} </td>
<td>
{if $ci->_is_admin_auth('edit')}
<label><a href="javascript:dr_iframe('edit', '{dr_url($uriprefix.'/edit', ['id'=>$t.id])}', '', '200px');" class="btn btn-xs green"> <i class="fa fa-edit"></i> {dr_lang('修改')}</a></label>
{/if}
<label><a href="{dr_url($uriprefix.'/go_index', ['id'=>$t.id])}" class="btn btn-xs red"> <i class="fa fa-cog"></i> {dr_lang('进入')}</a></label>
</td>
</tr>
{/loop}
</tbody>
</table>
</div>
<div class="row fc-list-footer table-checkable ">
<div class="col-md-5 fc-list-select">
{if $ci->_is_admin_auth('del')}
<label class="mt-table mt-checkbox mt-checkbox-single mt-checkbox-outline">
<input type="checkbox" class="group-checkable" data-set=".checkboxes" />
<span></span>
</label>
<button type="button" onclick="dr_ajax_option('{dr_url($uriprefix.'/del')}', '{dr_lang('你确定要删除它们吗?')}', 1)" class="btn red btn-sm"> <i class="fa fa-trash"></i> {dr_lang('删除')}</button>
{/if}
</div>
<div class="col-md-7 fc-list-page">
{$mypages}
</div>
</div>
</form>
{template "footer.html"}