More work in progress replacing text links with icons.
authorNik Okuntseff <support@anuko.com>
Sun, 7 Apr 2019 20:25:51 +0000 (20:25 +0000)
committerNik Okuntseff <support@anuko.com>
Sun, 7 Apr 2019 20:25:51 +0000 (20:25 +0000)
WEB-INF/templates/footer.tpl
WEB-INF/templates/groups.tpl
WEB-INF/templates/notifications.tpl

index 4bea5d5..ad1e463 100644 (file)
@@ -12,7 +12,7 @@
       <br>
       <table cellspacing="0" cellpadding="4" width="100%" border="0">
         <tr>
-          <td align="center">&nbsp;Anuko Time Tracker 1.18.64.4923 | Copyright &copy; <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
+          <td align="center">&nbsp;Anuko Time Tracker 1.18.64.4924 | Copyright &copy; <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
             <a href="https://www.anuko.com/lp/tt_4.htm" target="_blank">{$i18n.footer.credits}</a> |
             <a href="https://www.anuko.com/lp/tt_5.htm" target="_blank">{$i18n.footer.license}</a> |
             <a href="https://www.anuko.com/lp/tt_7.htm" target="_blank">{$i18n.footer.improve}</a>
index d1f174f..3cd4f51 100644 (file)
   <tr><td colspan="2">&nbsp;</td></tr>
 {/if}
   <tr>
-    <td width="35%" class="tableHeader">{$i18n.label.thing_name}</td>
-    <td width="35%" class="tableHeader">{$i18n.label.description}</td>
-    <td class="tableHeader">{$i18n.label.edit}</td>
-    <td class="tableHeader">{$i18n.label.delete}</td>
+    <td width="40%" class="tableHeader">{$i18n.label.thing_name}</td>
+    <td width="40%" class="tableHeader">{$i18n.label.description}</td>
+    <td></td>
+    <td></td>
   </tr>
 {if $subgroups}
   {foreach $subgroups as $subgroup}
   <tr bgcolor="{cycle values="#f5f5f5,#ffffff"}">
     <td>{$subgroup.name|escape}</td>
     <td>{$subgroup.description|escape}</td>
-    <td><a href="group_edit.php?id={$subgroup.id}">{$i18n.label.edit}</a></td>
-    <td><a href="group_delete.php?id={$subgroup.id}">{$i18n.label.delete}</a></td>
+    <td><a href="group_edit.php?id={$subgroup.id}"><img class="table_icon" alt="{$i18n.label.edit}" src="images/icon_edit.png"></a></td>
+    <td><a href="group_delete.php?id={$subgroup.id}"><img class="table_icon" alt="{$i18n.label.delete}" src="images/icon_delete.png"></a></td>
   </tr>
   {/foreach}
 {/if}
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}