<%=l(:label_news_plural)%>

<% if @news.empty? %>

<%= l(:label_no_data) %>

<% end %> <% for news in @news %>

<%= news.title %> (<%= link_to_user news.author %> <%= format_time(news.created_on) %>)
<% unless news.summary.empty? %><%= news.summary %>
<% end %> [<%= link_to l(:label_read), :controller => 'news', :action => 'show', :id => news %>]

<% end %> <%= pagination_links_full @news_pages %>

<%= link_to_if_authorized '» ' + l(:label_news_new), :controller => 'projects', :action => 'add_news', :id => @project %>