2006-07-29 23:54:22 +04:00
|
|
|
<h2><%=l(:label_news_plural)%></h2>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2006-09-03 14:25:21 +04:00
|
|
|
<% if @news.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
|
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
<% for news in @news %>
|
|
|
|
<p>
|
2006-09-02 17:33:23 +04:00
|
|
|
<b><%= news.title %></b> <small>(<%= link_to_user news.author %> <%= format_time(news.created_on) %>)</small><br />
|
2006-11-12 21:50:30 +03:00
|
|
|
<% unless news.summary.empty? %><%= news.summary %><br /><% end %>
|
2006-07-29 23:54:22 +04:00
|
|
|
<small>[<%= link_to l(:label_read), :controller => 'news', :action => 'show', :id => news %>]</small>
|
2006-06-28 22:11:03 +04:00
|
|
|
</p>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= pagination_links_full @news_pages %>
|
|
|
|
<p>
|
2006-07-29 23:54:22 +04:00
|
|
|
<%= link_to_if_authorized '» ' + l(:label_news_new), :controller => 'projects', :action => 'add_news', :id => @project %>
|
2006-06-28 22:11:03 +04:00
|
|
|
</p>
|