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.

22 lines
739 B

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