forked from cybrespace/mastodon
30 lines
845 B
Plaintext
30 lines
845 B
Plaintext
- content_for :page_title do
|
|
= t('admin.pubsubhubbub.title')
|
|
|
|
%table.table
|
|
%thead
|
|
%tr
|
|
%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')
|
|
%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)
|
|
%td
|
|
- if subscription.last_successful_delivery_at?
|
|
= l subscription.last_successful_delivery_at
|
|
- else
|
|
%i.fa.fa-times
|
|
|
|
= paginate @subscriptions
|