This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-03-16 03:23:22 -07:00
|
|
|
.batch-table__row
|
|
|
|
%label.batch-table__row__select.batch-table__row__select--aligned.batch-checkbox
|
|
|
|
= f.check_box :account_ids, { multiple: true, include_hidden: false }, account.id
|
|
|
|
.batch-table__row__content.batch-table__row__content--unpadded
|
|
|
|
%table.accounts-table
|
|
|
|
%tbody
|
|
|
|
%tr
|
|
|
|
%td= account_link_to account
|
|
|
|
%td.accounts-table__count.optional
|
|
|
|
= number_to_human account.statuses_count, strip_insignificant_zeros: true
|
|
|
|
%small= t('accounts.posts', count: account.statuses_count).downcase
|
|
|
|
%td.accounts-table__count.optional
|
|
|
|
= number_to_human account.followers_count, strip_insignificant_zeros: true
|
|
|
|
%small= t('accounts.followers', count: account.followers_count).downcase
|
|
|
|
%td.accounts-table__count
|
|
|
|
- if account.last_status_at.present?
|
2020-01-26 14:13:48 -08:00
|
|
|
%time.time-ago{ datetime: account.last_status_at.to_date.iso8601, title: l(account.last_status_at.to_date) }= l account.last_status_at
|
2019-03-16 03:23:22 -07:00
|
|
|
- else
|
|
|
|
\-
|
|
|
|
%small= t('accounts.last_active')
|