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.
26 lines
911 B
26 lines
911 B
{layout name="public/layout" /}
|
|
<ol class="breadcrumb" style="margin-top:10px">
|
|
<li><i class="glyphicon glyphicon-home"></i> <a href="{:url('center/index')}">用户中心</a></li>
|
|
<li class="active">活动报名</li>
|
|
</ol>
|
|
<table id="mytg" class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" width="20px">#</th>
|
|
<th scope="col">活动名称</th>
|
|
<th scope="col">申请时间</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach name="lists" item="vo" key="k"}
|
|
<tr>
|
|
<td>{$k+1}</td>
|
|
<td>{$vo.title}</td>
|
|
<td>{$vo.create_time|date='Y-m-d',###}</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
<tfoot>
|
|
<div class="list-page" align="center">{$page}</div>
|
|
</tfoot>
|
|
</table>
|
|
|