person.html
713 字节
<table class="table table-striped">
<thead>
<tr>
<th>{:__('名次')}</th>
<th>{:__('姓名')}</th>
<th>{:__('个人得分')}</th>
<th>{:__('所属战队')}</th>
</tr>
</thead>
<tbody>
{volist name="row" id="vo"}
<tr>
<td>{$vo.rank}</td>
<td>{$vo.name}</td>
<td style="word-break: break-all;">{$vo.title}</td>
<td style="word-break: break-all;">{$vo.score}</td>
</tr>
{/volist}
</tbody>
</table>
<div class="hide layer-footer">
<label class="control-label col-xs-12 col-sm-2"></label>
<div class="col-xs-12 col-sm-8">
<button type="reset" class="btn btn-primary btn-embossed btn-close" onclick="Layer.closeAll();">{:__('Close')}</button>
</div>
</div>