www.lightcourse.com/app/admin/view/feedback/index.html

89 lines
2.9 KiB
HTML

{include file="public/header" /}
<div class="page">
<div class="fixed-bar">
<div class="item-title">
<div class="subject">
<h3>{$Think.lang.ds_feedback}</h3>
<h5></h5>
</div>
{include file="public/admin_items" /}
</div>
</div>
<div class="fixed-empty"></div>
<div class="explanation" id="explanation">
<div class="title" id="checkZoom">
<h4 title="{$Think.lang.ds_explanation_tip}">{$Think.lang.ds_explanation}</h4>
<span id="explanationZoom" title="{$Think.lang.ds_explanation_close}" class="arrow"></span>
</div>
<ul>
<li>{$Think.lang.feedback_index_hlpe1}</li>
</ul>
</div>
<form method='post' id="form_link">
<table class="ds-default-table nobdb">
<thead>
<tr class="thead">
<th>&nbsp;</th>
<th>{$Think.lang.feedback_index_content}</th>
<th>{$Think.lang.ds_member_name}</th>
<th>{$Think.lang.feedback_index_time}</th>
<th>课程代码</th>
<th>名称</th>
<th>学校</th>
<th>{$Think.lang.feedback_index_from}</th>
</tr>
</thead>
<tbody>
{notempty name="feedback_list"}
{foreach name="feedback_list" item="v"}
<tr class="hover edit">
<td class="w24"><input type="checkbox" name="del_id[]" value="{$v.fb_id}" class="checkitem"></td>
<td width="200px">{$v.fb_content}</td>
<td>{$v.member_name}</td>
<td>{:date('Y-m-d H:i:s',$v.fb_time)}</td>
<th>{$v.fb_code}</th>
<th>{$v.fb_course}</th>
<th>{$v.fb_school}</th>
<td>{$v.fb_type==1?'WAP':'PC'}</td>
</tr>
{/foreach}
{else /}
<tr class="no_data">
<td colspan="10">{$Think.lang.ds_no_record}</td>
</tr>
{/notempty}
</tbody>
<tfoot>
{notempty name="feedback_list"}
<tr class="tfoot" id="dataFuncs">
<td><input type="checkbox" class="checkall" id="checkallBottom"></td>
<td colspan="16" id="batchAction"><label for="checkallBottom">{$Think.lang.ds_select_all}</label>
&nbsp;&nbsp; <a href="JavaScript:void(0);" class="btn btn-small" onclick="submit_delete_batch()"><span>{$Think.lang.ds_del}</span></a>
</td>
</tr>
{/notempty}
</tfoot>
</table>
{$show_page|raw}
</form>
</div>
<script type="text/javascript">
function submit_delete(ids_str) {
_uri = ADMINSITEURL + "/Feedback/del.html?feedback_id=" + ids_str;
dsLayerConfirm(_uri, '{$Think.lang.ds_ensure_del}');
}
</script>