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