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.

12 lines
431 B

  1. %tr
  2. %td
  3. = link_to explore_hashtag_path(tag) do
  4. = fa_icon 'hashtag'
  5. = tag.name
  6. %td
  7. = t('directories.people', count: tag.accounts_count)
  8. %td
  9. - if tag.hidden?
  10. = table_link_to 'eye', t('admin.tags.unhide'), unhide_admin_tag_path(tag.id, **@filter_params), method: :post
  11. - else
  12. = table_link_to 'eye-slash', t('admin.tags.hide'), hide_admin_tag_path(tag.id, **@filter_params), method: :post