{extends file="templates/index/index.tpl"}
{block
name="content"}
<div class="container">
<div class="row">
<div
class="col-sm-12">
<div
class="panel">
<div
class="panel-heading border">
<div class="row">
<div
class="col-xs-6">{$table.name} Structure</div>
<div class="col-xs-6 text-right">
<a href="{url controller=table
action=editstructure table=$table.name}" class="btn
btn-info">Edit Structure</a>
</div>
</div>
</div>
<div class="panel-body">
<table>
<tr>
<th></th>
<th>Name</th>
<th>Type</th>
<th>Length</th>
<th>Default</th>
<th>Primary Key</th>
<th></th>
</tr>
{foreach $table.fields as $field}
<tr>
<td></td>
<td>{$field->name}</td>
<td>{$field->type}</td>
<td>{$field->max_length}</td>
<td>{$field->default}</td>
<td>{if $field->primary_key}<span class="pill
pill-green"></span>{/if}</td>
<td></td>
</tr>
{/foreach}
</table>
</div>
</div>
</div>
</div>
</div>
{/block}