2007-03-12 20:59:02 +03:00
|
|
|
<h2><%=l(:label_overview)%></h2>
|
|
|
|
|
|
|
|
<div class="splitcontentleft">
|
2007-04-08 21:44:54 +04:00
|
|
|
<%= textilizable @project.description %>
|
2007-03-12 20:59:02 +03:00
|
|
|
<ul>
|
2007-04-25 19:06:20 +04:00
|
|
|
<% unless @project.homepage.blank? %><li><%=l(:field_homepage)%>: <%= auto_link @project.homepage %></li><% end %>
|
2007-09-22 17:17:49 +04:00
|
|
|
<% if @subprojects.any? %>
|
|
|
|
<li><%=l(:label_subproject_plural)%>: <%= @subprojects.collect{|p| link_to(p.name, :action => 'show', :id => p)}.join(", ") %></li>
|
|
|
|
<% end %>
|
|
|
|
<% if @project.parent %>
|
2007-04-03 00:17:02 +04:00
|
|
|
<li><%=l(:field_parent)%>: <%= link_to @project.parent.name, :controller => 'projects', :action => 'show', :id => @project.parent %></li>
|
|
|
|
<% end %>
|
2007-03-12 20:59:02 +03:00
|
|
|
<% for custom_value in @custom_values %>
|
|
|
|
<% if !custom_value.value.empty? %>
|
|
|
|
<li><%= custom_value.custom_field.name%>: <%=h show_value(custom_value) %></li>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
|
2007-09-14 15:34:08 +04:00
|
|
|
<% if User.current.allowed_to?(:view_issues, @project) %>
|
2007-09-22 17:17:49 +04:00
|
|
|
<div class="box">
|
2007-03-18 13:17:21 +03:00
|
|
|
<h3 class="icon22 icon22-tracker"><%=l(:label_issue_tracking)%></h3>
|
2007-03-12 20:59:02 +03:00
|
|
|
<ul>
|
|
|
|
<% for tracker in @trackers %>
|
2007-11-05 21:38:42 +03:00
|
|
|
<li><%= link_to tracker.name, :controller => 'issues', :action => 'index', :project_id => @project,
|
2007-03-12 20:59:02 +03:00
|
|
|
:set_filter => 1,
|
|
|
|
"tracker_id" => tracker.id %>:
|
|
|
|
<%= @open_issues_by_tracker[tracker] || 0 %> <%= lwr(:label_open_issues, @open_issues_by_tracker[tracker] || 0) %>
|
|
|
|
<%= l(:label_on) %> <%= @total_issues_by_tracker[tracker] || 0 %></li>
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
2007-11-05 21:38:42 +03:00
|
|
|
<p><%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :project_id => @project, :set_filter => 1 %></p>
|
2006-06-28 22:11:03 +04:00
|
|
|
</div>
|
2007-09-14 15:34:08 +04:00
|
|
|
<% end %>
|
2007-03-12 20:59:02 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="splitcontentright">
|
2007-09-22 17:17:49 +04:00
|
|
|
<% if @members_by_role.any? %>
|
2007-03-12 20:59:02 +03:00
|
|
|
<div class="box">
|
|
|
|
<h3 class="icon22 icon22-users"><%=l(:label_member_plural)%></h3>
|
2007-09-22 17:17:49 +04:00
|
|
|
<p><% @members_by_role.keys.sort.each do |role| %>
|
|
|
|
<%= role.name %>:
|
|
|
|
<%= @members_by_role[role].collect(&:user).sort.collect{|u| link_to_user u}.join(", ") %>
|
|
|
|
<br />
|
|
|
|
<% end %></p>
|
2007-03-12 20:59:02 +03:00
|
|
|
</div>
|
2007-09-22 17:17:49 +04:00
|
|
|
<% end %>
|
|
|
|
|
2007-11-06 01:22:51 +03:00
|
|
|
<% if @news.any? && authorize_for('news', 'index') %>
|
2007-03-12 20:59:02 +03:00
|
|
|
<div class="box">
|
|
|
|
<h3><%=l(:label_news_latest)%></h3>
|
2006-12-17 11:10:18 +03:00
|
|
|
<%= render :partial => 'news/news', :collection => @news %>
|
2007-11-06 01:22:51 +03:00
|
|
|
<p><%= link_to l(:label_news_view_all), :controller => 'news', :action => 'index', :project_id => @project %></p>
|
2007-03-12 20:59:02 +03:00
|
|
|
</div>
|
2007-04-20 14:26:57 +04:00
|
|
|
<% end %>
|
2007-08-16 15:01:00 +04:00
|
|
|
</div>
|
|
|
|
|
2007-09-22 17:17:49 +04:00
|
|
|
<% content_for :sidebar do %>
|
2007-11-20 23:29:03 +03:00
|
|
|
<% if authorize_for('projects', 'add_issue') && @project.trackers.any? %>
|
2007-09-22 17:17:49 +04:00
|
|
|
<h3><%= l(:label_issue_new) %></h3>
|
|
|
|
<%= l(:label_tracker) %>: <%= new_issue_selector %>
|
|
|
|
<% end %>
|
|
|
|
|
2007-09-24 02:00:21 +04:00
|
|
|
<% planning_links = []
|
|
|
|
planning_links << link_to_if_authorized(l(:label_calendar), :action => 'calendar', :id => @project)
|
|
|
|
planning_links << link_to_if_authorized(l(:label_gantt), :action => 'gantt', :id => @project)
|
|
|
|
planning_links.compact!
|
|
|
|
unless planning_links.empty? %>
|
2007-09-22 17:17:49 +04:00
|
|
|
<h3>Planning</h3>
|
2007-09-24 02:00:21 +04:00
|
|
|
<p><%= planning_links.join(' | ') %></p>
|
|
|
|
<% end %>
|
2007-09-22 17:17:49 +04:00
|
|
|
|
|
|
|
<% if @total_hours && User.current.allowed_to?(:view_time_entries, @project) %>
|
|
|
|
<h3><%= l(:label_spent_time) %></h3>
|
|
|
|
<p><span class="icon icon-time"><%= lwr(:label_f_hour, @total_hours) %></span></p>
|
|
|
|
<p><%= link_to(l(:label_details), {:controller => 'timelog', :action => 'details', :project_id => @project}) %> |
|
|
|
|
<%= link_to(l(:label_report), {:controller => 'timelog', :action => 'report', :project_id => @project}) %></p>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
2007-08-16 15:01:00 +04:00
|
|
|
<% content_for :header_tags do %>
|
2007-10-01 17:13:04 +04:00
|
|
|
<%= auto_discovery_link_tag(:atom, {:action => 'activity', :id => @project, :format => 'atom', :key => User.current.rss_key}) %>
|
2007-08-16 15:01:00 +04:00
|
|
|
<% end %>
|