Added custom field output on time.php as a rewrite of PR#76."
[timetracker.git] / WEB-INF / templates / invoices.tpl
index 0fad98d..7301ce2 100644 (file)
@@ -5,7 +5,7 @@
 <table cellspacing="0" cellpadding="7" border="0" width="720">
   <tr>
     <td valign="top">
-{if $user->canManageTeam() || $user->isClient()}
+{if $user->can('manage_invoices') || $user->can('view_client_invoices')}
       <table cellspacing="1" cellpadding="3" border="0" width="100%">
         <tr>
           <td class="tableHeader">{$i18n.label.invoice}</td>
@@ -16,7 +16,7 @@
   {/if}
           <td class="tableHeader">{$i18n.label.view}</td>
   {if !$user->isClient()}
-          <td class="tableHeader">{$i18n.label.delete}</td>
+          <td></td>
   {/if}
         </tr>
         {foreach $invoices as $invoice}
@@ -29,7 +29,7 @@
   {/if}
           <td><a href="invoice_view.php?id={$invoice.id}">{$i18n.label.view}</a></td>
   {if !$user->isClient()}
-          <td><a href="invoice_delete.php?id={$invoice.id}">{$i18n.label.delete}</a></td>
+          <td><a href="invoice_delete.php?id={$invoice.id}"><img class="table_icon" alt="{$i18n.label.delete}" src="images/icon_delete.png"></a></td>
   {/if}
         </tr>
         {/foreach}
@@ -37,7 +37,7 @@
 
   {if !$user->isClient()}
       <table width="100%">
-        <tr><td align="center"><br><form><input type="button" onclick="chLocation('invoice_add.php');" value="{$i18n.button.add_invoice}"></form></td></tr>
+        <tr><td align="center"><br><form><input type="button" onclick="chLocation('invoice_add.php');" value="{$i18n.button.add}"></form></td></tr>
       </table>
   {/if}
 {/if}