<%=l(:label_news_latest)%>
<% for news in News.find :all,
:limit => 10,
:conditions => "news.project_id in (#{@user.projects.collect{|m| m.id}.join(',')})",
:include => [:project, :author] %>
- <%= link_to news.title, :controller => 'news', :action => 'show', :id => news %>
<% unless news.summary.empty? %><%= news.summary %>
<% end %>
<%= news.author.name %>, <%= format_time(news.created_on) %>
<% end unless @user.projects.empty? %>