<%= @project.description %>
- <%=_('Homepage')%>: <%= link_to @project.homepage, @project.homepage %>
- <%=_('Created on')%>: <%= format_date(@project.created_on) %>
<% for custom_value in @custom_values %>
<% if !custom_value.value.empty? %>
- <%= custom_value.custom_field.name%>: <%= custom_value.value%>
<% end %>
<% end %>
<%= image_tag "tracker" %> <%=_('Trackers')%>
<% for tracker in @trackers %>
- <%= link_to tracker.name, :controller => 'projects', :action => 'list_issues', :id => @project,
:set_filter => 1,
"tracker_id" => tracker.id %>:
<%= Issue.count(:conditions => ["project_id=? and tracker_id=? and issue_statuses.is_closed=?", @project.id, tracker.id, false], :include => :status) %> <%=_('open')%>
<% end %>
<% if authorize_for 'projects', 'add_issue' %>
» <%=_('Report an issue')%>:
<% @trackers.each do |tracker| %>
- <%= link_to _(tracker.name), :controller => 'projects', :action => 'add_issue', :id => @project, :tracker_id => tracker %>
<% end %>
<% end %>
[ <%= link_to _('View all issues'), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %> ]
<%= image_tag "users" %> <%=_('Members')%>
<% for member in @members %>
<%= link_to_user member.user %> (<%= member.role.name %>)
<% end %>
<% if @subprojects %>
<%= image_tag "projects" %> <%=_('Subprojects')%>
<% for subproject in @subprojects %>
<%= link_to subproject.name, :action => 'show', :id => subproject %>
<% end %>
<% end %>
<%=_('Latest news')%>
<% for news in @news %>
<%= news.title %> (<%= link_to_user news.author %> <%= format_time(news.created_on) %>)
<%= news.summary %>
[<%= link_to _('Read...'), :controller => 'news', :action => 'show', :id => news %>]
<% end %>
[ <%= link_to _('View all news'), :controller => 'projects', :action => 'list_news', :id => @project %> ]