| 123456789101112131415161718192021222324252627282930313233343536373839 | {extend name="common/common2" /}{block name="main"}<div class="row">    <div class="col-sm-12">        <div class="ibox float-e-margins">            <div class="ibox-content">                <table class="table table-striped">                    <thead>                    <tr>                        <th>排名</th>                        <th>试卷名</th>                        <th>答题人</th>                        <th>分数</th>                        <th>交卷时间</th>                    </tr>                    </thead>                    <tbody>                     {foreach $list as $key=>$value }                    <tr>                        <td>{$key+1}</td>                        <td>{$value['article_paper_name']}</td>                        <td>{$value['user_name']}</td>                        <td>{$value['score']}</td>                        <td>{$value['create_time']}</td>                    </tr>                    {/foreach}                    </tbody>                </table>            </div>        </div>    </div></div>{/block}{block name="script"}<script></script>{/block}
 |