19 lines
788 B
Smarty
19 lines
788 B
Smarty
<tr>
|
|
<td>{$row['databasename']}</td>
|
|
<td>{$row['description']}</td>
|
|
<td>{$row['size']}</td>
|
|
<if 1 < count($sql_root)><td>{$sql_root['host']}</td></if>
|
|
<if $row['apsdb'] != '1'>
|
|
<td>
|
|
<a href="{$linker->getLink(array('section' => 'mysql', 'page' => 'mysqls', 'action' => 'edit', 'id' => $row['id']))}" style="text-decoration:none;">
|
|
<img src="templates/{$theme}/assets/img/icons/edit.png" alt="{$lng['panel']['edit']}" />
|
|
</a>
|
|
<a href="{$linker->getLink(array('section' => 'mysql', 'page' => 'mysqls', 'action' => 'delete', 'id' => $row['id']))}" style="text-decoration:none;">
|
|
<img src="templates/{$theme}/assets/img/icons/delete.png" alt="{$lng['panel']['delete']}" />
|
|
</a>
|
|
</td>
|
|
<else>
|
|
<td>{$lng['aps']['cannoteditordeleteapsdb']}</td>
|
|
</if>
|
|
</tr>
|