Files
sentcms/view/admin/action/detail.html
tensent 5c320206fb auth
2020-02-16 10:49:43 +08:00

30 lines
608 B
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{extend name="admin/base"/}
{block name="body"}
<div class="main-box no-header clearfix">
<header class="box-header with-border">
<!-- 标题栏 -->
<h3 class="box-title">{$meta_title|default='新功能'}</h3>
<div class="pull-right">
</div>
</header>
<div class="box-body">
<table class="table table-striped">
<thead>
<tr>
<th align="right">名称</th>
<th>信息</th>
</tr>
</thead>
<tbody>
{volist name="info" id="item"}
<tr>
<td align="right">{$key}</td>
<td>{$item}</td>
</tr>
{/volist}
</tbody>
</table>
</div>
</div>
{/block}