Skip to content

Commit

Permalink
Refs #20917 - Started field should show timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
snagoor committed Sep 15, 2017
1 parent afb0848 commit 9ff9480
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<td class="ellipsis"><%= link_to task.humanized[:action], defined?(main_app) ? main_app.foreman_tasks_task_path(task.id) : foreman_tasks_task_path(task.id) %></td>
<td><%= task.state %></td>
<td><%= task.result %></td>
<td><%= task.started_at ? (_('%s ago') % time_ago_in_words(task.started_at)) : _('N/A') %></td>
<td><%= task.started_at ? (_(date_time_relative(task.started_at))) : _('N/A') %></td>
</tr>
<% end %>
</table>

0 comments on commit 9ff9480

Please sign in to comment.