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