<%= link_to_if_authorized l(:label_news_new), {:controller => 'projects', :action => 'add_news', :id => @project}, :class => 'pic picAdd' %>
<%=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) %>
<%= news.comments_count %> <%= lwr(:label_comment, news.comments_count).downcase %>
<% end %>
<%= pagination_links_full @news_pages %>