You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
520 B
19 lines
520 B
{foreach name="region_list" item="v"}
|
|
<tr>
|
|
<td class="hidden-xs" height="28" >{$v.id}</td>
|
|
<td>{$v.pid|getRegionName}</td>
|
|
<td>{$v.name}</td>
|
|
<td>
|
|
<div class="hidden-sm hidden-xs action-buttons">
|
|
{if condition="$v.type gt 0"}
|
|
<a class="green" href="{:url('admin/Region/region_edit',array('id'=>$v['id']))}" title="修改">
|
|
<i class="ace-icon fa fa-pencil bigger-130"></i>
|
|
</a>
|
|
{/if}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
<tr>
|
|
<td height="50" colspan="12" align="left">{$page}</td>
|
|
</tr>
|
|
|