qa-ifish7/web/Application/Admin/View/Database/show_field.html

41 lines
1.4 KiB
HTML

<include file="Inc:head"/>
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<div class="widget-box">
<div class="widget-content nopadding">
<form method="post" action="__SELF__" onsubmit="return save_form(this,function(){window.history.go(0)});" class="modelIndex">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th width="10%">字段名</th>
<th width="30%">字段类型</th>
<th width="10%">字段属性</th>
<th width="10%">默认值</th>
<th width="20%">附加属性</th>
</tr>
</thead>
<tbody>
<foreach name="data" item="v" >
<tr>
<td style="text-align: center;"><b>{$v.field}</b></td>
<td style="text-align: center;">{$v.type}</td>
<td style="text-align: center;">{$v.key}</td>
<td style="text-align: center;">{$v.default}</td>
<td style="text-align: center;">{$v.extra}</td>
</tr>
</foreach>
</tbody>
</table>
</form>
</div>
</div>
</div>
</div>
</div>
<include file="Inc/foot" noiframeauto="true" noautotitle="{$title}"/>