2017-02-27 00:15:00 +01:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('settings.export')
|
2017-03-19 20:29:41 +01:00
|
|
|
|
2017-09-09 02:26:58 +02:00
|
|
|
.table-wrapper
|
|
|
|
%table.table
|
|
|
|
%tbody
|
|
|
|
%tr
|
|
|
|
%th= t('exports.storage')
|
|
|
|
%td= number_to_human_size @export.total_storage
|
|
|
|
%td
|
2018-08-14 21:56:17 +02:00
|
|
|
%tr
|
2019-12-19 12:47:55 +01:00
|
|
|
%th= t('accounts.posts_tab_heading')
|
2018-08-14 21:56:17 +02:00
|
|
|
%td= number_with_delimiter @export.total_statuses
|
|
|
|
%td
|
2017-09-09 02:26:58 +02:00
|
|
|
%tr
|
2019-12-19 12:47:55 +01:00
|
|
|
%th= t('admin.accounts.follows')
|
2018-08-14 21:56:17 +02:00
|
|
|
%td= number_with_delimiter @export.total_follows
|
2017-09-09 02:26:58 +02:00
|
|
|
%td= table_link_to 'download', t('exports.csv'), settings_exports_follows_path(format: :csv)
|
2019-01-01 13:44:04 +01:00
|
|
|
%tr
|
|
|
|
%th= t('exports.lists')
|
|
|
|
%td= number_with_delimiter @export.total_lists
|
|
|
|
%td= table_link_to 'download', t('exports.csv'), settings_exports_lists_path(format: :csv)
|
2018-08-14 21:56:17 +02:00
|
|
|
%tr
|
2019-12-19 12:47:55 +01:00
|
|
|
%th= t('admin.accounts.followers')
|
2018-08-14 21:56:17 +02:00
|
|
|
%td= number_with_delimiter @export.total_followers
|
|
|
|
%td
|
2017-09-09 02:26:58 +02:00
|
|
|
%tr
|
|
|
|
%th= t('exports.blocks')
|
2018-08-14 21:56:17 +02:00
|
|
|
%td= number_with_delimiter @export.total_blocks
|
2017-09-09 02:26:58 +02:00
|
|
|
%td= table_link_to 'download', t('exports.csv'), settings_exports_blocks_path(format: :csv)
|
|
|
|
%tr
|
|
|
|
%th= t('exports.mutes')
|
2018-08-14 21:56:17 +02:00
|
|
|
%td= number_with_delimiter @export.total_mutes
|
2017-09-09 02:26:58 +02:00
|
|
|
%td= table_link_to 'download', t('exports.csv'), settings_exports_mutes_path(format: :csv)
|
2019-01-01 13:44:04 +01:00
|
|
|
%tr
|
|
|
|
%th= t('exports.domain_blocks')
|
|
|
|
%td= number_with_delimiter @export.total_domain_blocks
|
|
|
|
%td= table_link_to 'download', t('exports.csv'), settings_exports_domain_blocks_path(format: :csv)
|
2018-02-21 23:21:32 +01:00
|
|
|
|
2019-09-19 20:58:19 +02:00
|
|
|
%hr.spacer/
|
|
|
|
|
2018-02-21 23:21:32 +01:00
|
|
|
%p.muted-hint= t('exports.archive_takeout.hint_html')
|
|
|
|
|
|
|
|
- if policy(:backup).create?
|
|
|
|
%p= link_to t('exports.archive_takeout.request'), settings_export_path, class: 'button', method: :post
|
|
|
|
|
|
|
|
- unless @backups.empty?
|
2019-09-19 20:58:19 +02:00
|
|
|
%hr.spacer/
|
|
|
|
|
2018-02-21 23:21:32 +01:00
|
|
|
.table-wrapper
|
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th= t('exports.archive_takeout.date')
|
|
|
|
%th= t('exports.archive_takeout.size')
|
|
|
|
%th
|
|
|
|
%tbody
|
|
|
|
- @backups.each do |backup|
|
|
|
|
%tr
|
|
|
|
%td= l backup.created_at
|
|
|
|
- if backup.processed?
|
|
|
|
%td= number_to_human_size backup.dump_file_size
|
|
|
|
%td= table_link_to 'download', t('exports.archive_takeout.download'), backup.dump.url
|
|
|
|
- else
|
|
|
|
%td{ colspan: 2 }= t('exports.archive_takeout.in_progress')
|