<%=l(:label_overview)%>

<%= simple_format(auto_link(@project.description)) %>

<%= image_tag "tracker" %> <%=l(:label_tracker_plural)%>

<% if authorize_for 'projects', 'add_issue' %> » <%=l(:label_issue_new)%>: <% 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 %> ]