2023-01-29 10:26:52 +08:00

46 lines
1.1 KiB
HTML

{extend name="public/base"/}
{block name="style"}
<link rel="stylesheet" href="__PUBLIC__/plugs/tagsinput/bootstrap-tagsinput.css">
<script src="__PUBLIC__/plugs/tagsinput/bootstrap-tagsinput.js"></script>
{/block}
{block name="body"}
<div class="main-box clearfix">
<header class="main-box-header clearfix">
<div class="pull-left">
<h2>{$meta_title}</h2>
</div>
</header>
<div class="main-box-body clearfix">
<table class="table table-striped">
<caption>所有授权作品</caption>
<thead>
<tr>
<th>小说ID</th>
<th>小说名称</th>
<th>更新时间</th>
<th>操作</th>
</tr>
</thead>
<tbody>
{volist name="list" id="v"}
<tr>
<td>{$v.articleid}</td>
<td>{$v.articlename}</td>
<td>{$v.lastupdate}</td>
<td><a href="{:url('getbookinfo',array('id'=>$v.articleid))}"><div class="btn btn-danger">添加书库</div></a></td>
</tr>
{/volist}
</tbody>
</table>
</div>
{/block}
{block name="script"}
<script type="text/javascript">
</script>
{/block}