2017-02-26 17:15:00 -06:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('settings.export')
|
2017-03-19 14:29:41 -05:00
|
|
|
|
|
|
|
%table.table
|
|
|
|
%tbody
|
|
|
|
%tr
|
|
|
|
%th= t('exports.storage')
|
2017-04-13 06:02:02 -05:00
|
|
|
%td= number_to_human_size @export.total_storage
|
2017-03-19 14:29:41 -05:00
|
|
|
%td
|
|
|
|
%tr
|
|
|
|
%th= t('exports.follows')
|
2017-04-13 06:02:02 -05:00
|
|
|
%td= @export.total_follows
|
2017-04-11 15:00:43 -05:00
|
|
|
%td= table_link_to 'download', t('exports.csv'), settings_exports_follows_path(format: :csv)
|
2017-03-19 14:29:41 -05:00
|
|
|
%tr
|
|
|
|
%th= t('exports.blocks')
|
2017-04-13 06:02:02 -05:00
|
|
|
%td= @export.total_blocks
|
2017-04-11 15:00:43 -05:00
|
|
|
%td= table_link_to 'download', t('exports.csv'), settings_exports_blocks_path(format: :csv)
|
2017-04-12 11:20:44 -05:00
|
|
|
%tr
|
|
|
|
%th= t('exports.mutes')
|
2017-04-13 06:02:02 -05:00
|
|
|
%td= @export.total_mutes
|
2017-04-12 11:20:44 -05:00
|
|
|
%td= table_link_to 'download', t('exports.csv'), settings_exports_mutes_path(format: :csv)
|