diff --git a/app/views/courses/show.html.erb b/app/views/courses/show.html.erb
index ff0a3e6e1..a1feaf12a 100644
--- a/app/views/courses/show.html.erb
+++ b/app/views/courses/show.html.erb
@@ -1,8 +1,6 @@
<% if @events_by_day != nil && @events_by_day.size >0 %>
-
- <%#= l(:label_date_from_to, :start => format_date(@date_from), :end => format_date(@date_to - 1)) %>
<% @events_by_day.keys.sort.reverse.each do |day| %>
@@ -13,23 +11,21 @@
<%= image_tag(url_to_avatar(e.event_author), :class => "avatar") %> |
-
+
-
+ |
<%= h(e.event_title) if @course.nil? || (e.course != nil && @course.id != e.course.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_new_activity) %>
-
-
- <%= link_to "#{eventToLanguageCourse(e.event_type, @course)}: "<< format_activity_title(e.event_title), (e.event_type.eql?("attachment")&&e.container.kind_of?(Course)) ? course_files_path(e.container) : e.event_url,:style => "word-break:break-all;word-wrap: break-word;" %>
+
+ <% 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_new_activity) %>
+
+ <%= link_to "#{eventToLanguageCourse(e.event_type, @course)}: "<< format_activity_title(e.event_title), (e.event_type.eql?("attachment")&&e.container.kind_of?(Course)) ? course_files_path(e.container) : e.event_url%>
|
@@ -53,7 +49,6 @@
-
<% end %>
|