<%=l(:label_news_plural)%>
<% if @news.empty? %><%= l(:label_no_data) %>
<% end %>
<% for news in @news %>
- <%= 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 %>
<%= pagination_links_full @news_pages %>
<%= link_to_if_authorized '» ' + l(:label_news_new), :controller => 'projects', :action => 'add_news', :id => @project %>