Added unlock link and greyed out customer if deactivated

This commit is contained in:
BNoiZe
2013-10-05 20:06:23 +02:00
parent 08e9f3ebd0
commit 521acfbe5c
7 changed files with 45 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
<tr>
<tr <if $row['deactivated'] == 1>class="disabled"</if>>
<td>
<if $row['company'] != ''>
{$row['company']}<br />
@@ -56,13 +56,18 @@
</span>
</div>
</td>
<td>
<td style="white-space: nowrap;>
<a href="{$linker->getLink(array('section' => 'customers', 'page' => $page, 'action' => 'edit', 'id' => $row['customerid']))}" style="text-decoration:none;">
<img src="templates/{$theme}/assets/img/icons/edit.png" alt="{$lng['panel']['edit']}" />
</a>&nbsp;
<a href="{$linker->getLink(array('section' => 'customers', 'page' => $page, 'action' => 'delete', 'id' => $row['customerid']))}" style="text-decoration:none;">
<img src="templates/{$theme}/assets/img/icons/delete.png" alt="{$lng['panel']['delete']}" />
</a>&nbsp;
<if $islocked == 1>
<a href="{$linker->getLink(array('section' => 'customers', 'page' => $page, 'action' => 'unlock', 'id' => $row['customerid']))}">
<img src="templates/{$theme}/assets/img/icons/unlock.png" alt="{$lng['panel']['unlock']}" />
</a>
</if>
</td>
</tr>