nograde.html 469 B

12345678910111213141516171819202122232425
  1. <div class="panel panel-default panel-intro">
  2. <table class="table table-striped table-bordered table-hover table-nowrap" width="100%">
  3. <tr>
  4. <td>用户id</td>
  5. <td>用户名</td>
  6. <td>昵称</td>
  7. </tr>
  8. {volist name="lists" id="vo"}
  9. <tr>
  10. <td>{$vo.id}</td>
  11. <td>{$vo.username}</td>
  12. <td>{$vo.nickname}</td>
  13. </tr>
  14. {/volist}
  15. </table>
  16. </div>