Removed middots in menus to hopefully do better styling with css.
[timetracker.git] / WEB-INF / templates / mobile / header.tpl
index 2a663c8..ec0b059 100644 (file)
 
 {assign var="tab_width" value="300"}
 
-<table height="100%" cellspacing="0" cellpadding="0" width="320" border="0">
+<table height="100%" cellspacing="0" cellpadding="0" border="0" style="margin-left: auto; margin-right: auto;">
   <tr>
     <td valign="top" align="center"> <!-- This is to centrally align all our content. -->
 
-      <!-- Top image -->
+      <!-- top image -->
       <table cellspacing="0" cellpadding="0" width="100%" border="0">
         <tr>
 {if $user->custom_logo}
@@ -36,7 +36,7 @@
             <table cellspacing="0" cellpadding="0" width="{$tab_width}" border="0">
               <tr>
                 <td valign="top">
-                  <table cellspacing="0" cellpadding="0" width="100%" border="0">
+                  <table id="page_logo" cellspacing="0" cellpadding="0" width="100%" border="0">
                     <tr><td height="6" colspan="2"><img width="1" height="6" src="../images/1x1.gif" border="0"></td></tr>
                     <tr valign="top">
 {if $user->custom_logo}
           </td>
         </tr>
       </table>
-      <!-- End of top image -->
+      <!-- end of top image -->
+      
+{if $authenticated}
+  {if $user->can('administer_site')}
+  
+      <!-- sub menu for admin -->
+      <table id="sub_menu_admin" cellspacing="0" cellpadding="3" width="100%" border="0">
+        <tr>
+          <td align="center" bgcolor="#d9d9d9" height="17" style="background-repeat: repeat-x;" background="../images/subm_bg.gif">&nbsp;
+            <a class="mainMenu" href="admin_groups.php">{$i18n.menu.groups}</a>
+            <a class="mainMenu" href="admin_options.php">{$i18n.menu.options}</a>
+          </td>
+        </tr>
+      </table>
+      <!-- end of sub menu for admin -->
+  {else}
 
-      <!-- Output errors -->
-{if !$errors->isEmpty()}
-      <table cellspacing="4" cellpadding="7" width="{$tab_width}" border="0">
+      <!-- sub menu for authorized user -->
+      <table id="sub_menu_authorized_user" cellspacing="0" cellpadding="3" width="100%" border="0">
+        <tr>
+          <td align="center" bgcolor="#d9d9d9" height="17" style="background-repeat: repeat-x;" background="../images/subm_bg.gif">&nbsp;
+    {if $user->exists() && ($user->can('track_own_time') || $user->can('track_time'))}
+           <a class="mainMenu" href="time.php">{$i18n.menu.time}</a>
+    {/if}
+    {if $user->exists() && $user->isPluginEnabled('ex') && ($user->can('track_own_expenses') || $user->can('track_expenses'))}
+           <a class="mainMenu" href="expenses.php">{$i18n.menu.expenses}</a>
+    {/if}
+    {if ($user->can('view_own_projects') || $user->can('manage_projects')) && ($smarty.const.MODE_PROJECTS == $user->getTrackingMode() || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->getTrackingMode())}
+           <a class="mainMenu" href="projects.php">{$i18n.menu.projects}</a>
+    {/if}
+    {if ($user->can('view_own_tasks') || $user->can('manage_tasks')) && $smarty.const.MODE_PROJECTS_AND_TASKS == $user->getTrackingMode()}
+           <a class="mainMenu" href="tasks.php">{$i18n.menu.tasks}</a>
+    {/if}
+    {if $user->can('view_users') || $user->can('manage_users')}
+           <a class="mainMenu" href="users.php">{$i18n.menu.users}</a>
+    {/if}
+    {if $user->isPluginEnabled('cl') && ($user->can('view_own_clients') || $user->can('manage_clients'))}
+           <a class="mainMenu" href="clients.php">{$i18n.menu.clients}</a>
+    {/if}
+          </td>
+        </tr>
+      </table>
+      <!-- end of sub menu for authorized user -->
+  {/if}
+{/if}
+      
+      <!-- output errors -->
+{if $err->yes()}
+      <table id="page_errors" cellspacing="4" cellpadding="7" width="{$tab_width}" border="0">
         <tr>
           <td class="error">
-  {foreach $errors->getErrors() as $error}
+  {foreach $err->getErrors() as $error}
             {$error.message}<br> {* No need to escape as they are not coming from user and may contain a link. *}
   {/foreach}
           </td>
         </tr>
       </table>
 {/if}
-      <!-- End of output errors -->
+      <!-- end of output errors -->
 
-      <!-- Output messages -->
-{if !$messages->isEmpty()}
-      <table cellspacing="4" cellpadding="7" width="{$tab_width}" border="0">
+      <!-- output messages -->
+{if $msg->yes()}
+      <table id="page_messages" cellspacing="4" cellpadding="7" width="{$tab_width}" border="0">
         <tr>
           <td class="info_message">
-  {foreach $messages->getErrors() as $message}
+  {foreach $msg->getErrors() as $message}
             {$message.message}<br> {* No need to escape. *}
   {/foreach}
           </td>
         </tr>
       </table>
 {/if}
-      <!-- End of output messages -->
\ No newline at end of file
+      <!-- end of output messages -->