##// END OF EJS Templates
Forum list can be reordered with drag and drop (#12909)....
Forum list can be reordered with drag and drop (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15337 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14495:47b162488c80
r14955:fb6b565a1ec9
Show More
index.html.erb
26 lines | 1014 B | text/plain | TextLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h2><%= l(:label_home) %></h2>
<div class="splitcontentleft">
Jean-Philippe Lang
Welcome text misses wiki div (#5770)....
r14066 <div class="wiki">
<%= textilizable Setting.welcome_text %>
</div>
Jean-Philippe Lang
Removed "Latest projects" from home page (#21148)....
r14495 <%= call_hook(:view_welcome_index_left) %>
</div>
<div class="splitcontentright">
Jean-Philippe Lang
Moved ProjectsController#list_news to NewsController#index....
r875 <% if @news.any? %>
Jean-Philippe Lang
Removes large icons....
r3065 <div class="news box">
Toshi MARUYAMA
replace tabs to spaces at app/views/welcome/index.html.erb...
r7184 <h3><%=l(:label_news_latest)%></h3>
<%= render :partial => 'news/news', :collection => @news %>
<%= link_to l(:label_news_view_all), :controller => 'news' %>
Jean-Philippe Lang
Moved ProjectsController#list_news to NewsController#index....
r875 </div>
<% end %>
Jean-Philippe Lang
Removed "Latest projects" from home page (#21148)....
r14495 <%= call_hook(:view_welcome_index_right) %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/welcome/index.html.erb...
r7217 </div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<% content_for :header_tags do %>
Jean-Philippe Lang
Activity enhancements:...
r1213 <%= auto_discovery_link_tag(:atom, {:controller => 'news', :action => 'index', :key => User.current.rss_key, :format => 'atom'},
:title => "#{Setting.app_title}: #{l(:label_news_latest)}") %>
Eric Davis
Refactor: extract ProjectsController#activity to a new Activities controller....
r3933 <%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :key => User.current.rss_key, :format => 'atom'},
Jean-Philippe Lang
Activity enhancements:...
r1213 :title => "#{Setting.app_title}: #{l(:label_activity)}") %>
Jean-Philippe Lang
Added feeds auto discovery links on projects/show (patch by Nicolas Chuche)....
r641 <% end %>