##// END OF EJS Templates
Display due date in red on overdue issues (#20812)....
Display due date in red on overdue issues (#20812). git-svn-id: http://svn.redmine.org/redmine/trunk@14732 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14276:85866cdcf30d
r14350:aeab970972dc
Show More
base.html.erb
81 lines | 2.7 KiB | text/plain | TextLexer
Jean-Philippe Lang
HTML5 doctype....
r9915 <!DOCTYPE html>
Toshi MARUYAMA
set html lang by user locale (#14206)...
r11722 <html lang="<%= current_language %>">
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <head>
Jean-Philippe Lang
HTML5 doctype....
r9915 <meta charset="utf-8" />
Jean-Philippe Lang
Disables IE compatibility mode (#20380)....
r14276 <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <title><%= html_title %></title>
Jean-Philippe Lang
Added Redmine::Info to store various information about the application....
r671 <meta name="description" content="<%= Redmine::Info.app_name %>" />
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <meta name="keywords" content="issue,bug,tracker" />
Jean-Philippe Lang
Send the CSRF token with Ajax requests (#7843)....
r5014 <%= csrf_meta_tag %>
Eric Davis
Add a favicon link with support for suburi. #3301...
r3780 <%= favicon %>
Toshi MARUYAMA
Backport r13313 from rails-4.1 to trunk....
r13045 <%= stylesheet_link_tag 'jquery/jquery-ui-1.11.0', 'application', :media => 'all' %>
Azamat Hackimov
Real RTL-theme support in locales (#6012)...
r3891 <%= stylesheet_link_tag 'rtl', :media => 'all' if l(:direction) == 'rtl' %>
Jean-Philippe Lang
Warning on leaving a page with unsaved content in textarea (#2910)....
r4780 <%= javascript_heads %>
Jean-Philippe Lang
Support for Javascript in Themes (#2803)....
r4444 <%= heads_for_theme %>
Jean-Philippe Lang
Merged hooks branch @ r1785 into trunk....
r1785 <%= call_hook :view_layouts_base_html_head %>
<!-- page specific tags -->
<%= yield :header_tags -%>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </head>
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <body class="<%= body_css_classes %>">
Jean-Philippe Lang
wrapper div added to the layout....
r1031 <div id="wrapper">
Jean-Philippe Lang
Adds a few divs to the base layout (#871)....
r3315 <div id="wrapper2">
Jean-Philippe Lang
Adds a div that wraps everything except the footer....
r10572 <div id="wrapper3">
Jean-Philippe Lang
Application layout refactored....
r736 <div id="top-menu">
<div id="account">
Jean-Philippe Lang
The following menus can now be extended by plugins: top_menu, account_menu, application_menu (empty by default)....
r1123 <%= render_menu :account_menu -%>
Jean-Philippe Lang
Added a quick search form in page header. Search functionality moved to a dedicated controller....
r486 </div>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= content_tag('div', "#{l(:label_logged_as)} #{link_to_user(User.current, :format => :username)}".html_safe, :id => 'loggedas') if User.current.logged? %>
Jean-Philippe Lang
Fixed: Login page should not show projects link and search box if authentication is required (#3715)....
r4887 <%= render_menu :top_menu if User.current.logged? || !Setting.login_required? -%>
Jean-Philippe Lang
Application layout refactored....
r736 </div>
Toshi MARUYAMA
remove trailing white-spaces from app/views/layouts/base.rhtml....
r6408
Jean-Philippe Lang
Application layout refactored....
r736 <div id="header">
Jean-Philippe Lang
Fixed: Login page should not show projects link and search box if authentication is required (#3715)....
r4887 <% if User.current.logged? || !Setting.login_required? %>
Jean-Philippe Lang
Application layout refactored....
r736 <div id="quick-search">
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({:controller => 'search', :action => 'index', :id => @project}, :method => :get ) do %>
Jean-Philippe Lang
Contextual quick search (#3263)....
r2829 <%= hidden_field_tag(controller.default_search_scope, 1, :id => nil) if controller.default_search_scope %>
Toshi MARUYAMA
[#9489] link label to element...
r7560 <label for='q'>
<%= link_to l(:label_search), {:controller => 'search', :action => 'index', :id => @project}, :accesskey => accesskey(:search) %>:
</label>
Jean-Philippe Lang
Added some accesskeys:...
r793 <%= text_field_tag 'q', @question, :size => 20, :class => 'small', :accesskey => accesskey(:quick_search) %>
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
Jean-Philippe Lang
Merged nested projects branch. Removes limit on subproject nesting (#594)....
r2302 <%= render_project_jump_box %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
Jean-Philippe Lang
Fixed: Login page should not show projects link and search box if authentication is required (#3715)....
r4887 <% end %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/layouts/base.rhtml....
r6408
Jean-Philippe Lang
Adds (a maximum of 3) links to project ancestors in the page title (#2788)....
r2423 <h1><%= page_header_title %></h1>
Toshi MARUYAMA
remove trailing white-spaces from app/views/layouts/base.rhtml....
r6408
Eric Davis
Hide the main menu div if there isn't any items for it. #3259...
r3425 <% if display_main_menu?(@project) %>
Jean-Philippe Lang
Application layout refactored....
r736 <div id="main-menu">
Jean-Philippe Lang
Highlight the current item of the main menu....
r1062 <%= render_main_menu(@project) %>
Jean-Philippe Lang
Application layout refactored....
r736 </div>
Eric Davis
Hide the main menu div if there isn't any items for it. #3259...
r3425 <% end %>
Jean-Philippe Lang
Application layout refactored....
r736 </div>
Jean-Philippe Lang
Added an ajax indicator for all ajax calls. Also removed highlight effects on my page layout edition....
r482
Jean-Philippe Lang
Don't use tag helper in layout (#11704)....
r10054 <div id="main" class="<%= sidebar_content? ? '' : 'nosidebar' %>">
Toshi MARUYAMA
remove trailing white-spaces from app/views/layouts/base.rhtml....
r6408 <div id="sidebar">
Jean-Philippe Lang
Application layout refactored....
r736 <%= yield :sidebar %>
Jean-Philippe Lang
Fixed that sidebar with hook content only should not be hidden....
r9415 <%= view_layouts_base_sidebar_hook_response %>
Jean-Philippe Lang
Application layout refactored....
r736 </div>
Toshi MARUYAMA
remove trailing white-spaces from app/views/layouts/base.rhtml....
r6408
Jean-Philippe Lang
Application layout refactored....
r736 <div id="content">
Toshi MARUYAMA
replace tabs to spaces at app/views/layouts/base.html.erb...
r7213 <%= render_flash_messages %>
Jean-Philippe Lang
Application layout refactored....
r736 <%= yield %>
Eric Davis
Added two new plugin hooks:...
r2367 <%= call_hook :view_layouts_base_content %>
Toshi MARUYAMA
replace tabs to spaces at app/views/layouts/base.html.erb...
r7213 <div style="clear:both;"></div>
Jean-Philippe Lang
Application layout refactored....
r736 </div>
</div>
Jean-Philippe Lang
Adds a div that wraps everything except the footer....
r10572 </div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Application layout refactored....
r736 <div id="ajax-indicator" style="display:none;"><span><%= l(:label_loading) %></span></div>
Jean-Philippe Lang
Ability to add non-member users as watchers (#5159)....
r8472 <div id="ajax-modal" style="display:none;"></div>
Toshi MARUYAMA
remove trailing white-spaces from app/views/layouts/base.html.erb...
r7219
Jean-Philippe Lang
Application layout refactored....
r736 <div id="footer">
Jean-Philippe Lang
Adds a few divs to the base layout (#871)....
r3315 <div class="bgl"><div class="bgr">
Jean-Philippe Lang
Copyright update....
r13490 Powered by <%= link_to Redmine::Info.app_name, Redmine::Info.url %> &copy; 2006-2015 Jean-Philippe Lang
Jean-Philippe Lang
Adds a few divs to the base layout (#871)....
r3315 </div></div>
</div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
Jean-Philippe Lang
wrapper div added to the layout....
r1031 </div>
Eric Davis
Adds :view_layouts_base_body_bottom hook...
r1919 <%= call_hook :view_layouts_base_body_bottom %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </body>
Jean-Philippe Lang
Applied the flash notices patch by Matt Jones (slightly edited)....
r597 </html>