diff --git a/app/views/tasks/_task.html.erb b/app/views/tasks/_task.html.erb
index d1a4cd2..6c3f1ed 100644
--- a/app/views/tasks/_task.html.erb
+++ b/app/views/tasks/_task.html.erb
@@ -2,6 +2,10 @@
<%= render :partial => 'task_icon', :locals => {:task => task} %>
+
<%= show_time(task.created_at) %>
+
+ <%= render :partial => 'task_title', :locals => {:task => task} %>
+
<% if !@view_only && profile.organization? && @responsible_candidates.present? %>
<%= _('Assign to:') %>
@@ -41,9 +45,6 @@
<% end %>
- <%= show_time(task.created_at) %>
-
- <%= render :partial => 'task_title', :locals => {:task => task} %>
- -