diff --git a/app/views/projects/show.html.erb b/app/views/projects/show.html.erb
index b4f767a5..04fb4eb7 100644
--- a/app/views/projects/show.html.erb
+++ b/app/views/projects/show.html.erb
@@ -1,91 +1,77 @@
<% if @events_by_day.size >0 %>
-
-
-
- <%= l(:label_date_from_to, :start => format_date(@date_to - @days), :end => format_date(@date_to-1)) %>
-
-
- <% @events_by_day.keys.sort.reverse.each do |day| %>
-
- <% sort_activity_events(@events_by_day[day]).each do |e, in_group| -%>
-
-
-
- <%= image_tag(url_to_avatar(e.event_author), :class => "avatar")%> |
-
-
-
-
- <%= h(e.project) if @project.nil? || @project.id != e.project.id %>
-
- <% if @canShowRealName %>
- <%= link_to_user(e.event_author) if e.respond_to?(:event_author) %>(<%= link_to_user(e.event_author,@canShowRealName) if e.respond_to?(:event_author) %>)
- <% else %>
- <%= link_to_user(e.event_author) if e.respond_to?(:event_author) %>
- <% end %>
+
+
+ <%= l(:label_date_from_to, :start => format_date(@date_to - @days), :end => format_date(@date_to-1)) %>
+
- <%= l(:label_new_activity) %>
-
- <%= link_to "#{eventToLanguageCourse(e.event_type, @project)}: "<< format_activity_title(e.event_title), (e.event_type.eql?("attachment")&&e.container.kind_of?(Project)) ? project_files_path(e.container) : e.event_url %>
- |
-
-
-
-
- <%= h(truncate(strip_tags(e.event_description).gsub(/ /,' '), length: 30, omission:'...')) %>
- |
-
-
- <%= l :label_activity_time %>: <%= format_activity_day(day) %> <%= format_time(e.event_datetime, false) %> |
- <% if e.event_type == "issue" %>
- <%= link_to l(:label_find_all_comments), issue_path(e) %> <%= l(:label_comments_count, :count => e.journals.count)%> |
- <% end %>
-
- |
-
-
-
-
- <% end %>
-
+ <% @events_by_day.keys.sort.reverse.each do |day| %>
+ <% sort_activity_events(@events_by_day[day]).each do |e, in_group| -%>
+
+
+ <%= image_tag(url_to_avatar(e.event_author), :class => "avatar")%>
+
+
+ <%= h(e.project) if @project.nil? || @project.id != e.project.id %>
+
+ <% if @canShowRealName %>
+ <%= link_to_user(e.event_author) if e.respond_to?(:event_author) %>(<%= link_to_user(e.event_author,@canShowRealName) if e.respond_to?(:event_author) %>)
+ <% else %>
+ <%= link_to_user(e.event_author) if e.respond_to?(:event_author) %>
+ <% end %>
- <% end -%>
-
+ <%= l(:label_new_activity) %>
+
+ <%= link_to "#{eventToLanguageCourse(e.event_type, @project)}: "<< format_activity_title(e.event_title), (e.event_type.eql?("attachment")&&e.container.kind_of?(Project)) ? project_files_path(e.container) : e.event_url %>
-
-
- <%end%>
+
+ <%= h(truncate(strip_tags(e.event_description).gsub(/ /,' '), length: 30, omission:'...')) %>
+
+
+
<%= l :label_activity_time %>: <%= format_activity_day(day) %> <%= format_time(e.event_datetime, false) %>
+ <% if e.event_type == "issue" %>
+
+ <%= link_to l(:label_find_all_comments), issue_path(e) %> <%= l(:label_comments_count, :count => e.journals.count)%>
+
+ <% end %>
+
+
+
-