More work in progress replacing text links with icons.
[timetracker.git] / WEB-INF / templates / notifications.tpl
index 7285419..3a62e8c 100644 (file)
@@ -9,8 +9,8 @@
           <td class="tableHeader">{$i18n.label.schedule}</td>
           <td class="tableHeader">{$i18n.label.email}</td>
           <td class="tableHeader">{$i18n.label.condition}</td>
-          <td class="tableHeader">{$i18n.label.edit}</td>
-          <td class="tableHeader">{$i18n.label.delete}</td>
+          <td></td>
+          <td></td>
         </tr>
   {if $notifications}
     {foreach $notifications as $notification}
@@ -19,8 +19,8 @@
           <td>{$notification['cron_spec']|escape}</td>
           <td>{$notification['email']|escape}</td>
           <td>{$notification['report_condition']|escape}</td>
-          <td><a href="notification_edit.php?id={$notification['id']}">{$i18n.label.edit}</a></td>
-          <td><a href="notification_delete.php?id={$notification['id']}">{$i18n.label.delete}</a></td>
+          <td><a href="notification_edit.php?id={$notification['id']}"><img class="table_icon" alt="{$i18n.label.edit}" src="images/icon_edit.png"></a></td>
+          <td><a href="notification_delete.php?id={$notification['id']}"><img class="table_icon" alt="{$i18n.label.delete}" src="images/icon_delete.png"></a></td>
         </tr>
     {/foreach}
   {/if}