about summary refs log tree commit diff
path: root/app/views/admin/pubsubhubbub/index.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/pubsubhubbub/index.html.haml')
-rw-r--r--app/views/admin/pubsubhubbub/index.html.haml18
1 files changed, 1 insertions, 17 deletions
diff --git a/app/views/admin/pubsubhubbub/index.html.haml b/app/views/admin/pubsubhubbub/index.html.haml
index 852e84f11..066d9e5c6 100644
--- a/app/views/admin/pubsubhubbub/index.html.haml
+++ b/app/views/admin/pubsubhubbub/index.html.haml
@@ -10,22 +10,6 @@
       %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{ style: "color: #{subscription.expired? ? 'red' : 'inherit'};" }
-          = precede subscription.expired? ? '-' : '' do
-            = time_ago_in_words(subscription.expires_at)
-        %td
-          - if subscription.last_successful_delivery_at?
-            = l subscription.last_successful_delivery_at
-          - else
-            %i.fa.fa-times
+    = render partial: 'subscription', collection: @subscriptions
 
 = paginate @subscriptions