You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.7 KiB
55 lines
1.7 KiB
{extend name="admin@public/base" /}
|
|
{block name="main-content"}
|
|
<div class="page-content">
|
|
|
|
<div class="row maintop">
|
|
<div class="col-xs-4 col-sm-2 margintop5">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div>
|
|
<table class="table table-striped table-bordered table-hover" id="dynamic-table">
|
|
<thead>
|
|
<tr>
|
|
<th style="width: 50px;">ID</th>
|
|
<th style="width: auto;">文件描述</th>
|
|
<th style="width: 100px;">上传者类型</th>
|
|
<th style="width: 180px;">上传者</th>
|
|
<th style="width: 180px;">状态</th>
|
|
<th style="width: 100px;">文件大小</th>
|
|
<th style="width: 170px;">上传时间</th>
|
|
<th style="width: 170px;">查看</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{foreach name="files_list" item="v"}
|
|
<tr>
|
|
<td height="28" >{$v.file_id}</td>
|
|
<td>{$v.ftype_id|get_cult4FileTypeDescr}</td>
|
|
<td>{if condition="$v.user_type eq 0"}前台{else/}后台{/if}</td>
|
|
<td>{$v.user_id,$v.user_type|get_cult4UserName}</td>
|
|
<td>{$v.status|get_cult4Status}</td>
|
|
<td>{$v.filesize}</td>
|
|
<td>{$v.upload_time|date='Y-m-d H:i:s',###}</td>
|
|
<td><a href="{$v.path|get_imgurl}" target="_blank">查看</a></td>
|
|
</tr>
|
|
{/foreach}
|
|
<tr>
|
|
<td height="50" colspan="10" align="right">
|
|
<form id="leftnav" name="leftnav" method="post" action="{:url('cult4/Cult4/apply_check'.$process)}" >
|
|
<input type="hidden" name="apply_id" id="apply_id" value="{$apply_id}" />
|
|
<button class="btn btn-info" type="submit" name="btn" value="BACK"><i class="ace-icon fa fa-check bigger-110"></i>返回</button>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div><!-- /.page-content -->
|
|
{/block}
|