diff options
Diffstat (limited to 'app/views/admin/runners/_runner.html.haml')
-rw-r--r-- | app/views/admin/runners/_runner.html.haml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/admin/runners/_runner.html.haml b/app/views/admin/runners/_runner.html.haml index 2196a53..d0b9593 100644 --- a/app/views/admin/runners/_runner.html.haml +++ b/app/views/admin/runners/_runner.html.haml @@ -32,7 +32,10 @@ %span.label.label-primary = tag %td - #{time_ago_in_words(runner.created_at)} ago + - if runner.contacted_at + #{time_ago_in_words(runner.contacted_at)} ago + - else + Never %td .pull-right = link_to 'Edit', admin_runner_path(runner), class: 'btn btn-small' |