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.

19 lines
613 B

  1. .batch-table__row
  2. - if batch_available
  3. %label.batch-table__row__select.batch-table__row__select--aligned.batch-checkbox
  4. = f.check_box :tag_ids, { multiple: true, include_hidden: false }, tag.id
  5. .directory__tag
  6. = link_to admin_tag_path(tag.id) do
  7. %h4
  8. = fa_icon 'hashtag'
  9. = tag.name
  10. %small
  11. = t('admin.tags.unique_uses_today', count: tag.history.first[:accounts])
  12. - if tag.trending?
  13. = fa_icon 'fire fw'
  14. = t('admin.tags.trending_right_now')
  15. .trends__item__current= friendly_number_to_human tag.history.first[:uses]