17 lines
627 B
Plaintext
17 lines
627 B
Plaintext
<h2><%=l(:label_news_plural)%></h2>
|
|
|
|
<% if @news.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
|
|
|
|
<% for news in @news %>
|
|
<p>
|
|
<b><%= news.title %></b> <small>(<%= link_to_user news.author %> <%= format_time(news.created_on) %>)</small><br />
|
|
<% unless news.summary.empty? %><%= news.summary %><br /><% end %>
|
|
<small>[<%= link_to l(:label_read), :controller => 'news', :action => 'show', :id => news %>]</small>
|
|
</p>
|
|
<% end %>
|
|
|
|
<%= pagination_links_full @news_pages %>
|
|
<p>
|
|
<%= link_to_if_authorized '» ' + l(:label_news_new), :controller => 'projects', :action => 'add_news', :id => @project %>
|
|
</p>
|