about summary refs log tree commit diff
path: root/app/views/relationships/_account.html.haml
blob: f521aff2258ed2bbe3650adfc54797d3da6c6fe4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.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.accounts-table__interrelationships
            = interrelationships_icon(@relationships, account.id)
          %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?
              %time.time-ago{ datetime: account.last_status_at.to_date.iso8601, title: l(account.last_status_at.to_date) }= l account.last_status_at
            - else
              \-
            %small= t('accounts.last_active')