mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-17 21:04:14 +00:00
35 lines
1.4 KiB
Plaintext
35 lines
1.4 KiB
Plaintext
|
- content_for :page_title do
|
||
|
= t('settings.severed_relationships')
|
||
|
|
||
|
%p.muted-hint= t('severed_relationships.preamble')
|
||
|
|
||
|
- unless @events.empty?
|
||
|
.table-wrapper
|
||
|
%table.table
|
||
|
%thead
|
||
|
%tr
|
||
|
%th= t('exports.archive_takeout.date')
|
||
|
%th= t('severed_relationships.type')
|
||
|
%th= t('severed_relationships.lost_follows')
|
||
|
%th= t('severed_relationships.lost_followers')
|
||
|
%tbody
|
||
|
- @events.each do |event|
|
||
|
%tr
|
||
|
%td= l event.created_at
|
||
|
%td= t("severed_relationships.event_type.#{event.type}", target_name: event.target_name)
|
||
|
- if event.purged?
|
||
|
%td{ rowspan: 2 }= t('severed_relationships.purged')
|
||
|
- else
|
||
|
%td
|
||
|
- count = event.severed_relationships.active.where(local_account: current_account).count
|
||
|
- if count.zero?
|
||
|
= t('generic.none')
|
||
|
- else
|
||
|
= table_link_to 'download', t('severed_relationships.download', count: count), following_severed_relationship_path(event, format: :csv)
|
||
|
%td
|
||
|
- count = event.severed_relationships.passive.where(local_account: current_account).count
|
||
|
- if count.zero?
|
||
|
= t('generic.none')
|
||
|
- else
|
||
|
= table_link_to 'download', t('severed_relationships.download', count: count), followers_severed_relationship_path(event, format: :csv)
|