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:
Chris@1464: <% if @project.description.present? %>
Chris@1464:
Chris@1464: <%= textilizable @project.description %>
Chris@1464:
Chris@1464: <% end %>
Chris@1464:
Chris@1464: <% unless @project.homepage.blank? %>
Chris@1464: - <%=l(:field_homepage)%>: <%= link_to h(@project.homepage), @project.homepage %>
Chris@1464: <% end %>
Chris@1464: <% if @subprojects.any? %>
Chris@1464: - <%=l(:label_subproject_plural)%>:
Chris@1464: <%= @subprojects.collect{|p| link_to p, project_path(p)}.join(", ").html_safe %>
Chris@1464: <% end %>
Chris@1464: <% @project.visible_custom_field_values.each do |custom_value| %>
Chris@1464: <% if !custom_value.value.blank? %>
Chris@1464: - <%=h custom_value.custom_field.name %>: <%=h show_value(custom_value) %>
Chris@1464: <% end %>
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: <% for tracker in @trackers %>
Chris@1464: - <%= link_to h(tracker.name), project_issues_path(@project, :set_filter => 1, :tracker_id => tracker.id) %>:
Chris@1464: <%= l(:label_x_open_issues_abbr_on_total, :count => @open_issues_by_tracker[tracker].to_i,
Chris@1464: :total => @total_issues_by_tracker[tracker].to_i) %>
Chris@1464:
Chris@1464: <% end %>
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:
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)) -%>