2016-11-07 18:53:39 +08:00

45 lines
1.6 KiB
HTML

{extend name="public/base" /}
{block name="content"}
<div class="box">
<div class="box-body">
<div class="btn-group margin-bottom">
<button type="button" class="btn btn-success"><i class="glyphicon glyphicon-plus"></i> 新增</button>
<button type="button" class="btn btn-danger"><i class="glyphicon glyphicon-trash"></i> 删除</button>
</div>
<table class="table table-bordered">
<tbody>
<tr>
<th style="width: 10px">
<input type="checkbox">
</th>
<th>Task</th>
<th>Progress</th>
<th>Label</th>
<th>button</th>
</tr>
<tr>
<td>
<input type="checkbox">
</td>
<td>Update software</td>
<td>
<div class="progress progress-xs">
<div class="progress-bar progress-bar-danger" style="width: 55%"></div>
</div>
</td>
<td>
<span class="badge bg-red">55%</span>
</td>
<td>
<button type="button" class="btn btn-primary"><i class="glyphicon glyphicon-pencil"></i> 编辑</button>
<button type="button" class="btn btn-danger"><i class="glyphicon glyphicon-trash"></i> 删除</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
{/block}
{block name="myScript"}
{/block}