blob: cb11a502c9ea34e7a630d4d79867ae9ba17804ad (
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.nil?
%i.fa.fa-times
- else
= l subscription.last_successful_delivery_at
= will_paginate @subscriptions, pagination_options
|