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