2016-12-13 13:42:10 +01:00
|
|
|
- content_for :page_title do
|
2017-04-13 21:49:07 +02:00
|
|
|
= t('admin.pubsubhubbub.title')
|
2016-12-13 13:42:10 +01:00
|
|
|
|
2016-11-28 18:45:13 +01:00
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%tr
|
2017-04-13 21:49:07 +02:00
|
|
|
%th= t('admin.pubsubhubbub.topic')
|
|
|
|
%th= t('admin.pubsubhubbub.callback_url')
|
|
|
|
%th= t('admin.pubsubhubbub.confirmed')
|
|
|
|
%th= t('admin.pubsubhubbub.expires_in')
|
|
|
|
%th= t('admin.pubsubhubbub.last_delivery')
|
2016-11-28 18:45:13 +01:00
|
|
|
%tbody
|
|
|
|
- @subscriptions.each do |subscription|
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%samp= subscription.account.acct
|
|
|
|
%td
|
|
|
|
%samp= subscription.callback_url
|
|
|
|
%td
|
|
|
|
- if subscription.confirmed?
|
|
|
|
%i.fa.fa-check
|
|
|
|
%td= distance_of_time_in_words(Time.now, subscription.expires_at)
|
2016-11-30 15:24:57 +01:00
|
|
|
%td
|
2017-04-12 18:24:18 +02:00
|
|
|
- if subscription.last_successful_delivery_at?
|
2016-11-30 15:24:57 +01:00
|
|
|
= l subscription.last_successful_delivery_at
|
2017-04-12 18:24:18 +02:00
|
|
|
- else
|
|
|
|
%i.fa.fa-times
|
2016-11-28 18:45:13 +01:00
|
|
|
|
2017-04-11 01:11:41 +02:00
|
|
|
= paginate @subscriptions
|