detail.html 733 字节
<table class="table table-striped">
  <thead>
  <tr>
    <th>{:__('个人名称')}</th>
    <th>{:__('个人票数')}</th>
  </tr>
  </thead>
  <tbody>
  {/*{volist name="row" id="vo"&cc;
    <tr>
        <td>{$key&cc;</td>
        <td style="word-break: break-all;">{$vo|htmlentities&cc;</td>
    </tr>
    {/volist&cc;*/}
  <tr>
    <td>{$row.name}</td>
    <td style="word-break: break-all;">{$row.score}</td>
  </tr>
  </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>