<%= simple_format(auto_link(@project.description)) %>
<% unless @project.homepage.empty? %>- <%=l(:field_homepage)%>: <%= link_to @project.homepage, @project.homepage %>
<% end %>
- <%=l(:field_created_on)%>: <%= format_date(@project.created_on) %>
<% for custom_value in @custom_values %>
<% if !custom_value.value.empty? %>
- <%= custom_value.custom_field.name%>: <%= show_value(custom_value) %>
<% end %>
<% end %>
<%= image_tag "tracker" %> <%=l(:label_tracker_plural)%>
<% for tracker in @trackers %>
- <%= link_to tracker.name, :controller => 'projects', :action => 'list_issues', :id => @project,
:set_filter => 1,
"tracker_id" => tracker.id %>:
<%= issue_count = Issue.count(:conditions => ["project_id=? and tracker_id=? and issue_statuses.is_closed=?", @project.id, tracker.id, false], :include => :status) %>
<%= lwr(:label_open_issues, issue_count) %>
<% end %>
<% if authorize_for 'projects', 'add_issue' %>
» <%=l(:label_issue_new)%>:
<% @trackers.each do |tracker| %>
- <%= link_to tracker.name, :controller => 'projects', :action => 'add_issue', :id => @project, :tracker_id => tracker %>
<% end %>
<% end %>
[ <%= link_to l(:label_issue_view_all), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %> ]
<%= image_tag "users" %> <%=l(:label_member_plural)%>
<% for member in @members %>
<%= link_to_user member.user %> (<%= member.role.name %>)
<% end %>
<% if @subprojects %>
<%= image_tag "projects" %> <%=l(:label_subproject_plural)%>
<% for subproject in @subprojects %>
<%= link_to subproject.name, :action => 'show', :id => subproject %>
<% end %>
<% end %>
<%=l(:label_news_latest)%>
<% for news in @news %>
<%= news.title %> (<%= link_to_user news.author %> <%= format_time(news.created_on) %>)
<%= news.summary %>
[<%= link_to l(:label_read), :controller => 'news', :action => 'show', :id => news %>]
<% end %>
[ <%= link_to l(:label_news_view_all), :controller => 'projects', :action => 'list_news', :id => @project %> ]