This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-28 09:45:13 -08:00
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Topic
|
|
|
|
%th Callback URL
|
|
|
|
%th Confirmed
|
|
|
|
%th Expires in
|
2016-11-30 06:24:57 -08:00
|
|
|
%th Last delivery
|
2016-11-28 09:45:13 -08: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 06:24:57 -08:00
|
|
|
%td
|
|
|
|
- if subscription.last_successful_delivery_at.nil?
|
|
|
|
%i.fa.fa-times
|
|
|
|
- else
|
|
|
|
= l subscription.last_successful_delivery_at
|
2016-11-28 09:45:13 -08:00
|
|
|
|
|
|
|
= will_paginate @subscriptions, pagination_options
|