mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 09:21:13 +01:00
3c45d3963a
* Scrollable tables in settings pages * Add space before curly brace
22 lines
739 B
Text
22 lines
739 B
Text
- content_for :page_title do
|
|
= t('settings.export')
|
|
|
|
.table-wrapper
|
|
%table.table
|
|
%tbody
|
|
%tr
|
|
%th= t('exports.storage')
|
|
%td= number_to_human_size @export.total_storage
|
|
%td
|
|
%tr
|
|
%th= t('exports.follows')
|
|
%td= @export.total_follows
|
|
%td= table_link_to 'download', t('exports.csv'), settings_exports_follows_path(format: :csv)
|
|
%tr
|
|
%th= t('exports.blocks')
|
|
%td= @export.total_blocks
|
|
%td= table_link_to 'download', t('exports.csv'), settings_exports_blocks_path(format: :csv)
|
|
%tr
|
|
%th= t('exports.mutes')
|
|
%td= @export.total_mutes
|
|
%td= table_link_to 'download', t('exports.csv'), settings_exports_mutes_path(format: :csv)
|