administration.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:2k
源码类别:

Ajax

开发平台:

Others

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5.   <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  6.   <title>Typo Administration:  <%= controller.controller_name %></title>
  7.   <meta http-equiv="imagetoolbar" content="no" />
  8.   <%= stylesheet_link_tag "growler", "administration", "lightbox" %>
  9.   <%= stylesheet_link_tag "administration_rtl" if ( _("Localization.rtl") == "1") %>
  10.   <%= javascript_include_tag "prototype", "effects", "builder", "dragdrop", "controls", "typo", "lightbox", "quicktags", "growler", "typo_carousel", "administration", :ckeditor %>
  11.   <%= calendar_date_select_includes %>  
  12. </head>
  13. <body>
  14.   <div id='header'>
  15.     <h1><%= link_to this_blog.blog_name, this_blog.base_url %></h1>
  16.   </div>
  17.   <%= link_to _("%s &raquo;", "Log out"), {:controller => "/accounts", :action=>"logout"}, :id => 'logout' %>
  18.   <div id='container' class='ui-tabs ui-widget ui-widget-content ui-corner-all'>
  19.     <div id='menu' class='ui-widget-header ui-corner-all'>
  20.       <ul id='tabs' class='ui-tabs-nav ui-helper-reset ui-helper-clearfix '>
  21.         <%= content_tag :li, (link_to _('Dashboard'), :controller => '/admin'), :class => class_dashboard  %>
  22.         <% for pm in current_user.project_modules %>
  23.           <%= content_tag :li, (link_to _(pm.menus.first.name ), pm.menus.first.url), :class => send("class_#{pm.name}") %>
  24.         <% end %>
  25.       </ul>
  26.       <ul class='ui-tabs-nav ui-helper-reset ui-helper-clearfix submenu'>
  27.         <%= yield :tasks %>
  28.       </ul>
  29.     </div>
  30.     
  31.     <div id='content' class='ui-tabs-panel'>
  32.       <%= render_the_flash %>
  33.       
  34.       <%= show_page_heading %>
  35.       <%= yield  %>
  36.     </div>
  37.   </div>
  38.     <div id="footer">
  39.       <%= link_to(this_blog.blog_name, this_blog.base_url) %> <%= _("is proudly powered by")%> Typo <%=h TYPO_VERSION %>
  40.     </div>
  41. </body>
  42. </html>