Modified templates to use newline in the end of file.
[timetracker.git] / WEB-INF / templates / mobile / tasks.tpl
index 0a52107..c877e98 100644 (file)
         <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>
         </tr>
   {if $active_tasks}
     {foreach $active_tasks as $task}
         <tr bgcolor="{cycle values="#f5f5f5,#dedee5"}">
-          <td>{$task.name|escape:'html'}</td>
+          <td><a href="task_edit.php?id={$task.id}">{$task.name|escape:'html'}</a></td>
           <td>{$task.description|escape:'html'}</td>
-          <td><a href="task_edit.php?id={$task.id}">{$i18n.label.edit}</a></td>
         </tr>
     {/foreach}
   {/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>
         </tr>
     {foreach $inactive_tasks as $task}
         <tr bgcolor="{cycle values="#f5f5f5,#dedee5"}">
-          <td>{$task.name|escape:'html'}</td>
+          <td><a href="task_edit.php?id={$task.id}">{$task.name|escape:'html'}</a></td>
           <td>{$task.description|escape:'html'}</td>
-          <td><a href="task_edit.php?id={$task.id}">{$i18n.label.edit}</a></td>
         </tr>
     {/foreach}
       </table>