<%=l(:label_overview)%>

<%= textilizable @project.description %> <% if User.current.allowed_to?(:view_issues, @project) %>

<%=l(:label_issue_tracking)%>

<%= link_to l(:label_issue_view_all), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %>

<% end %>
<% if @members_by_role.any? %>

<%=l(:label_member_plural)%>

<% @members_by_role.keys.sort.each do |role| %> <%= role.name %>: <%= @members_by_role[role].collect(&:user).sort.collect{|u| link_to_user u}.join(", ") %>
<% end %>

<% end %> <% if @news.any? && authorize_for('projects', 'list_news') %>

<%=l(:label_news_latest)%>

<%= render :partial => 'news/news', :collection => @news %>

<%= link_to l(:label_news_view_all), :controller => 'projects', :action => 'list_news', :id => @project %>

<% end %>
<% content_for :sidebar do %> <% if authorize_for('projects', 'add_issue') %>

<%= l(:label_issue_new) %>

<%= l(:label_tracker) %>: <%= new_issue_selector %> <% end %>

Planning

<%= link_to_if_authorized l(:label_calendar), :action => 'calendar', :id => @project %> | <%= link_to_if_authorized l(:label_gantt), :action => 'gantt', :id => @project %>

<% if @total_hours && User.current.allowed_to?(:view_time_entries, @project) %>

<%= l(:label_spent_time) %>

<%= lwr(:label_f_hour, @total_hours) %>

<%= link_to(l(:label_details), {:controller => 'timelog', :action => 'details', :project_id => @project}) %> | <%= link_to(l(:label_report), {:controller => 'timelog', :action => 'report', :project_id => @project}) %>

<% end %>

<%= link_to l(:label_feed_plural), {:action => 'feeds', :id => @project}, :class => 'icon icon-feed' %>

<% end %> <% content_for :header_tags do %> <%= auto_discovery_link_tag(:rss, {:controller => 'feeds', :action => 'issues', :project_id => @project, :key => @key}, {:title => l(:label_reported_issues)}) %> <%= auto_discovery_link_tag(:atom, {:controller => 'feeds', :action => 'issues', :project_id => @project, :key => @key, :format => 'atom'}, {:title => l(:label_reported_issues)}) %> <%= auto_discovery_link_tag(:rss, {:controller => 'feeds', :action => 'history', :project_id => @project, :key => @key }, {:title => l(:label_changes_details)}) %> <%= auto_discovery_link_tag(:atom, {:controller => 'feeds', :action => 'history', :project_id => @project, :key => @key, :format => 'atom'}, {:title => l(:label_changes_details)}) %> <%= auto_discovery_link_tag(:rss, {:controller => 'feeds', :action => 'news', :project_id => @project, :key => @key}, {:title => l(:label_news_latest)}) %> <%= auto_discovery_link_tag(:atom, {:controller => 'feeds', :action => 'news', :project_id => @project, :key => @key, :format => 'atom'}, {:title => l(:label_news_latest)}) %> <% end %>