闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
688 B

  1. - content_for :page_title do
  2. = t('settings.export')
  3. %table.table
  4. %tbody
  5. %tr
  6. %th= t('exports.storage')
  7. %td= number_to_human_size @export.total_storage
  8. %td
  9. %tr
  10. %th= t('exports.follows')
  11. %td= @export.total_follows
  12. %td= table_link_to 'download', t('exports.csv'), settings_exports_follows_path(format: :csv)
  13. %tr
  14. %th= t('exports.blocks')
  15. %td= @export.total_blocks
  16. %td= table_link_to 'download', t('exports.csv'), settings_exports_blocks_path(format: :csv)
  17. %tr
  18. %th= t('exports.mutes')
  19. %td= @export.total_mutes
  20. %td= table_link_to 'download', t('exports.csv'), settings_exports_mutes_path(format: :csv)