diff options
Diffstat (limited to 'app/views/admin/pubsubhubbub/index.html.haml')
-rw-r--r-- | app/views/admin/pubsubhubbub/index.html.haml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/views/admin/pubsubhubbub/index.html.haml b/app/views/admin/pubsubhubbub/index.html.haml index bb897eb89..ad8cf5198 100644 --- a/app/views/admin/pubsubhubbub/index.html.haml +++ b/app/views/admin/pubsubhubbub/index.html.haml @@ -5,6 +5,7 @@ %th Callback URL %th Confirmed %th Expires in + %th Last delivery %tbody - @subscriptions.each do |subscription| %tr @@ -16,5 +17,10 @@ - if subscription.confirmed? %i.fa.fa-check %td= distance_of_time_in_words(Time.now, subscription.expires_at) + %td + - if subscription.last_successful_delivery_at.nil? + %i.fa.fa-times + - else + = l subscription.last_successful_delivery_at = will_paginate @subscriptions, pagination_options |