Chris@1296:
Chris@1296: <% if User.current.allowed_to?(:add_subprojects, @project) %> Chris@1296: <%= link_to l(:label_subproject_new), {:controller => 'projects', :action => 'new', :parent_id => @project}, :class => 'icon icon-add' %> Chris@1296: <% end %> Chris@1296: <% if User.current.allowed_to?(:close_project, @project) %> Chris@1296: <% if @project.active? %> Chris@1296: <%= link_to l(:button_close), close_project_path(@project), :data => {:confirm => l(:text_are_you_sure)}, :method => :post, :class => 'icon icon-lock' %> Chris@1296: <% else %> Chris@1296: <%= link_to l(:button_reopen), reopen_project_path(@project), :data => {:confirm => l(:text_are_you_sure)}, :method => :post, :class => 'icon icon-unlock' %> Chris@1296: <% end %> Chris@1296: <% end %> Chris@1296:
Chris@1296: Chris@1296:

<%=l(:label_overview)%>

Chris@1296: Chris@1296: <% unless @project.active? %> Chris@1296:

<%= l(:text_project_closed) %>

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

<%=l(:label_issue_tracking)%>

Chris@1296: Chris@1296:

Chris@1296: <%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :project_id => @project, :set_filter => 1 %> Chris@1296: <% if User.current.allowed_to?(:view_calendar, @project, :global => true) %> Chris@1296: | <%= link_to(l(:label_calendar), :controller => 'calendars', :action => 'show', :project_id => @project) %> Chris@1296: <% end %> Chris@1296: <% if User.current.allowed_to?(:view_gantt, @project, :global => true) %> Chris@1296: | <%= link_to(l(:label_gantt), :controller => 'gantts', :action => 'show', :project_id => @project) %> Chris@1296: <% end %> Chris@1296:

Chris@1296:
Chris@1296: <% end %> Chris@1296: <%= call_hook(:view_projects_show_left, :project => @project) %> Chris@1296:
Chris@1296: Chris@1296:
Chris@1296: <%= render :partial => 'members_box' %> Chris@1296: Chris@1296: <% if @news.any? && authorize_for('news', 'index') %> Chris@1296:
Chris@1296:

<%=l(:label_news_latest)%>

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

<%= link_to l(:label_news_view_all), :controller => 'news', :action => 'index', :project_id => @project %>

Chris@1296:
Chris@1296: <% end %> Chris@1296: <%= call_hook(:view_projects_show_right, :project => @project) %> Chris@1296:
Chris@1296: Chris@1296: <% content_for :sidebar do %> Chris@1296: <% if @total_hours.present? %> Chris@1296:

<%= l(:label_spent_time) %>

Chris@1296:

<%= l_hours(@total_hours) %>

Chris@1296:

Chris@1296: <% if User.current.allowed_to?(:log_time, @project) %> Chris@1296: <%= link_to l(:button_log_time), new_project_time_entry_path(@project) %> | Chris@1296: <% end %> Chris@1296: <%= link_to(l(:label_details), project_time_entries_path(@project)) %> | Chris@1296: <%= link_to(l(:label_report), report_project_time_entries_path(@project)) %>

Chris@1296: <% end %> Chris@1296: <%= call_hook(:view_projects_show_sidebar_bottom, :project => @project) %> Chris@1296: <% end %> Chris@1296: Chris@1296: <% content_for :header_tags do %> Chris@1296: <%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :id => @project, :format => 'atom', :key => User.current.rss_key}) %> Chris@1296: <% end %> Chris@1296: Chris@1296: <% html_title(l(:label_overview)) -%>