blob: dcbb11c1140c4a037ff91b8f674d3b32e3f0cc59 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
- content_for :page_title do
PubSubHubbub
%table.table
%thead
%tr
%th Topic
%th Callback URL
%th Confirmed
%th Expires in
%th 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
|