Refactoring - white space
[timetracker.git] / WEB-INF / templates / header.tpl
1 <html>
2 <head>
3   <meta http-equiv="content-type" content="text/html; charset={$smarty.const.CHARSET}">
4   <link rel="icon" href="favicon.ico" type="image/x-icon">
5   <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
6   <link href="{$smarty.const.DEFAULT_CSS}" rel="stylesheet" type="text/css">
7 {if $i18n.language.rtl}
8   <link href="{$smarty.const.RTL_CSS}" rel="stylesheet" type="text/css">
9 {/if}
10   <title>Time Tracker{if $title} - {$title}{/if}</title>
11   <script src="js/strftime.js"></script>
12   <script>
13     {* Setup locale for strftime *}
14     {$js_date_locale}
15   </script>
16   <script src="js/strptime.js"></script>
17 </head>
18
19 <body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" {$onload}>
20
21 {assign var="tab_width" value="700"}
22
23 <!--  101% height here is a workaround for Firefox shifting content horizontally when scrollbar appears / disappears.
24 See https://bugzilla.mozilla.org/show_bug.cgi?id=279425.
25 With 101% height we essentially force the scrollbar to always appear. -->
26 <table height="101%" cellspacing="0" cellpadding="0" width="100%" border="0">
27   <tr>
28     <td valign="top" align="center"> <!-- This is to centrally align all our content. -->
29
30       <!-- Top image -->
31       <table cellspacing="0" cellpadding="0" width="100%" border="0">
32         <tr>
33 {if $user->custom_logo}
34           <td align="center">
35 {else}
36           <td bgcolor="#a6ccf7" background="images/top_bg.gif" align="center">
37 {/if}
38             <table cellspacing="0" cellpadding="0" width="{$tab_width}" border="0">
39               <tr>
40                 <td valign="top">
41                   <table cellspacing="0" cellpadding="0" width="100%" border="0">
42                     <tr><td height="6" colspan="2"><img width="1" height="6" src="images/1x1.gif" border="0"></td></tr>
43                     <tr valign="top">
44 {if $user->custom_logo}
45                       <td height="55" align="center"><img alt="Time Tracker" width="300" height="43" src="{$custom_logo}" border="0"></a></td>
46 {else}
47                       <td height="55" align="center"><a href="https://www.anuko.com/lp/tt_1.htm" target="_blank"><img alt="Anuko Time Tracker" width="300" height="43" src="images/tt_logo.png" border="0"></a></td>
48 {/if}
49                     </tr>
50                   </table>
51                 </td>
52               </tr>
53             </table>
54           </td>
55         </tr>
56       </table>
57       <!-- End of top image -->
58
59 {if $authenticated}
60   {if $user->isAdmin()}
61       <!-- Top menu for admin -->
62       <table cellspacing="0" cellpadding="3" width="100%" border="0">
63         <tr>
64           <td class="systemMenu" height="17" align="center">&nbsp;
65             <a class="systemMenu" href="logout.php">{$i18n.menu.logout}</a> &middot;
66             <a class="systemMenu" href="{$smarty.const.FORUM_LINK}" target="_blank">{$i18n.menu.forum}</a> &middot;
67             <a class="systemMenu" href="{$smarty.const.HELP_LINK}" target="_blank">{$i18n.menu.help}</a>
68           </td>
69         </tr>
70       </table>
71       <!-- End of top menu for admin -->
72
73       <!-- Sub menu for admin -->
74       <table cellspacing="0" cellpadding="3" width="100%" border="0">
75         <tr>
76           <td align="center" bgcolor="#d9d9d9" nowrap height="17" background="images/subm_bg.gif">&nbsp;
77             <a class="mainMenu" href="admin_teams.php">{$i18n.menu.teams}</a> &middot;
78             <a class="mainMenu" href="admin_options.php">{$i18n.menu.options}</a>
79           </td>
80         </tr>
81       </table>
82       <!-- End of sub menu for admin -->
83   {else}
84       <!-- Top menu for authorized user -->
85       <table cellspacing="0" cellpadding="3" width="100%" border="0">
86         <tr>
87           <td class="systemMenu" height="17" align="center">&nbsp;
88             <a class="systemMenu" href="logout.php">{$i18n.menu.logout}</a> &middot;
89             <a class="systemMenu" href="profile_edit.php">{$i18n.menu.profile}</a> &middot;
90             <a class="systemMenu" href="{$smarty.const.FORUM_LINK}" target="_blank">{$i18n.menu.forum}</a> &middot;
91             <a class="systemMenu" href="{$smarty.const.HELP_LINK}" target="_blank">{$i18n.menu.help}</a>
92           </td>
93         </tr>
94       </table>
95       <!-- End of top menu for authorized user -->
96
97       <!-- Sub menu for authorized user -->
98       <table cellspacing="0" cellpadding="3" width="100%" border="0">
99         <tr>
100           <td align="center" bgcolor="#d9d9d9" nowrap height="17" background="images/subm_bg.gif">&nbsp;
101     {if !$user->isClient()}
102            <a class="mainMenu" href="time.php">{$i18n.menu.time}</a>
103     {/if}
104     {if in_array('ex', explode(',', $user->plugins)) && !$user->isClient()}
105             &middot; <a class="mainMenu" href="expenses.php">{$i18n.menu.expenses}</a>
106     {/if}
107             {if !$user->isClient()}&middot; {/if}<a class="mainMenu" href="reports.php">{$i18n.menu.reports}</a>
108     {if ($user->canManageTeam() || $user->isClient()) && in_array('iv', explode(',', $user->plugins))}
109             &middot; <a class="mainMenu" href="invoices.php">{$i18n.title.invoices}</a>
110     {/if}
111     {if (in_array('ch', explode(',', $user->plugins)) && !$user->isClient()) && ($smarty.const.MODE_PROJECTS == $user->tracking_mode
112       || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode
113       || in_array('cl', explode(',', $user->plugins)))}
114             &middot; <a class="mainMenu" href="charts.php">{$i18n.menu.charts}</a>
115     {/if}
116     {if !$user->isClient() && ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
117             &middot; <a class="mainMenu" href="projects.php">{$i18n.menu.projects}</a>
118     {/if}
119     {if $user->canManageTeam() && ($smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
120             &middot; <a class="mainMenu" href="tasks.php">{$i18n.menu.tasks}</a>
121     {/if}
122     {if !$user->isClient()}
123             &middot; <a class="mainMenu" href="users.php">{$i18n.menu.users}</a>
124     {/if}
125     {if $user->canManageTeam() && in_array('cl', explode(',', $user->plugins))}
126             &middot; <a class="mainMenu" href="clients.php">{$i18n.menu.clients}</a>
127     {/if}
128     {if $user->isManager()}
129             &middot; <a class="mainMenu" href="export.php">{$i18n.menu.export}</a>
130     {/if}
131           </td>
132         </tr>
133       </table>
134       <!-- End of sub menu for authorized user -->
135   {/if}
136 {else}
137       <!-- Top menu for non authorized user -->
138       <table cellspacing="0" cellpadding="3" width="100%" border="0">
139         <tr>
140           <td class="systemMenu" height="17" align="center">&nbsp;
141             <a class="systemMenu" href="login.php">{$i18n.menu.login}</a> &middot;
142   {if isTrue($smarty.const.MULTITEAM_MODE) && $smarty.const.AUTH_MODULE == 'db'}
143             <a class="systemMenu" href="register.php">{$i18n.menu.create_team}</a> &middot;
144   {/if}
145             <a class="systemMenu" href="{$smarty.const.FORUM_LINK}" target="_blank">{$i18n.menu.forum}</a> &middot;
146             <a class="systemMenu" href="{$smarty.const.HELP_LINK}" target="_blank">{$i18n.menu.help}</a>
147           </td>
148         </tr>
149       </table>
150 {/if}
151       <br>
152
153       <!-- Page title and user details -->
154 {if $title}
155       <table cellspacing="0" cellpadding="5" width="{$tab_width+20}" border="0">
156         <tr><td class="sectionHeader"><div class="pageTitle">{$title}{if $timestring}: {$timestring}{/if}</div></td></tr>
157         <tr><td>{$user->name|escape:'html'}{if $user->isAdmin()} {$i18n.label.role_admin}{elseif $user->isManager()} {$i18n.label.role_manager}{elseif $user->canManageTeam()} {$i18n.label.role_comanager}{/if}{if $user->behalf_id > 0} <b>{$i18n.label.on_behalf} {$user->behalf_name|escape:'html'}</b>{/if}{if $user->team}, {$user->team|escape:'html'}{/if}</td></tr>
158       </table>
159 {/if}
160       <!-- End of page title and user details -->
161
162       <!-- Output errors -->
163 {if !$errors->isEmpty()}
164       <table cellspacing="4" cellpadding="7" width="{$tab_width}" border="0">
165         <tr>
166           <td class="error">
167   {foreach $errors->getErrors() as $error}
168             {$error.message}<br> {* No need to escape as they are not coming from user and may contain a link. *}
169   {/foreach}
170           </td>
171         </tr>
172       </table>
173 {/if}
174       <!-- End of output errors -->
175
176       <!-- Output messages -->
177 {if !$messages->isEmpty()}
178       <table cellspacing="4" cellpadding="7" width="{$tab_width}" border="0">
179         <tr>
180           <td class="info_message">
181   {foreach $messages->getErrors() as $message}
182             {$message.message}<br> {* No need to escape. *}
183   {/foreach}
184           </td>
185         </tr>
186       </table>
187 {/if}
188       <!-- End of output messages -->