<%= link_to image_tag(url_to_avatar(news.author), :class => "avatar"), user_path(news.author) %>
|
<% if @project.project_type == 1 %>
<%= link_to_user(news.author) if news.respond_to?(:author) %>
<%= l(:label_project_notice) %>
<%= link_to h(news.title), news_path(news) %>
<%= delete_link news_path(news) if User.current.allowed_to?(:manage_news, @project) %>
|
<% else %>
<%= link_to_user(news.author) if news.respond_to?(:author) %>
<%= l(:label_project_newshare) %>
<%= link_to h(news.title), news_path(news) %>
<%= delete_link news_path(news) if User.current.allowed_to?(:manage_news, @project) %>
|
<% end %>
<%= textilizable(news, :description) %> |
<%= l :label_update_time %>
: <%= format_time(news.created_on) %> |
<%= link_to l(:label_project_newother), news_path(news) %><%= "(#{l(:label_x_comments, :count => news.comments_count)})" if news.comments_count >= 0 %> |
|