Index: app/views/news/index.html.erb =================================================================== --- app/views/news/index.html.erb (revision 14071) +++ app/views/news/index.html.erb (working copy) @@ -24,13 +24,17 @@

<%= l(:label_no_data) %>

<% else %> <% @newss.each do |news| %> -

<%= avatar(news.author, :size => "24") %><%= link_to_project(news.project) + ': ' unless news.project == @project %> - <%= link_to news.title, news_path(news) %> - <%= "(#{l(:label_x_comments, :count => news.comments_count)})" if news.comments_count > 0 %>

-

<%= authoring news.created_on, news.author %>

-
- <%= textilizable(news, :description) %> -
+
+
+

<%= avatar(news.author, :size => "24") %><%= link_to_project(news.project) + ': ' unless news.project == @project %> + <%= link_to h(news.title), news_path(news) %> + <%= "(#{l(:label_x_comments, :count => news.comments_count)})" if news.comments_count > 0 %>

+

<%= authoring news.created_on, news.author %>

+
+
+ <%= textilizable(news, :description) %> +
+
<% end %> <% end %>

<%= pagination_links_full @news_pages %>