<%= task_information(task) %>
<%= _(Task::Status.names[task.status]) %>
<%= _('Created:') %>
<%= show_date(task.created_at) %>
<%= _('Processed:') %>
<%= show_date(task.end_date) %>
<% if task.closed_by.present? %>
<%= _('Closed by:') %>
<%= link_to(task.closed_by.name, task.closed_by.url) %>
<% end %>