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

<%=l(:label_overview)%>

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

<%= l(:text_project_closed) %>

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

<%=l(:label_issue_tracking)%>

Chris@1464: Chris@1464:

Chris@1464: <%= link_to l(:label_issue_view_all), project_issues_path(@project, :set_filter => 1) %> Chris@1464: <% if User.current.allowed_to?(:view_calendar, @project, :global => true) %> Chris@1464: | <%= link_to l(:label_calendar), project_calendar_path(@project) %> Chris@1464: <% end %> Chris@1464: <% if User.current.allowed_to?(:view_gantt, @project, :global => true) %> Chris@1464: | <%= link_to l(:label_gantt), project_gantt_path(@project) %> Chris@1464: <% end %> Chris@1464:

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

<%=l(:label_news_latest)%>

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

<%= link_to l(:label_news_view_all), project_news_index_path(@project) %>

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

<%= l(:label_spent_time) %>

Chris@1464:

<%= l_hours(@total_hours) %>

Chris@1464:

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

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