applied my changes - initial import
[boxroom-stian.git] / app / views / layouts / admin_tool.rhtml
blob81dc4ad738e6b8e935da292e86bce9c29a937561
1 <html>
2 <head>
3   <title><%= TITLE %></title>
4     <%= stylesheet_link_tag 'boxroom' %>
5     <script type="text/javascript">
6         if(IE)
7         {
8             window.onload = ResizeContentDiv;
9             window.onresize = ResizeContentDiv;
10         }
11     </script>
12 </head>
13 <body>
15   <%= render_partial 'shared/top_header' %>
17     <div id="middle">
18         <div class="actionLinks">
19             <% if @logged_in_user.is_admin? %>
20             <%= link_to 'Server status', { :action => 'server_status' } %><br>
21             <%= link_to 'Show folder tree', { :action => 'folder_tree' }%><br>
22             <%= link_to 'Show usage log', { :action => 'show_log' }%><br>
23             <% end %>
24         </div>
26         <%= render_partial 'shared/content' %>
27     </div>
29 </body>
30 </html>