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.

31 lines
1.3 KiB

  1. - content_for :page_title do
  2. = t('settings.featured_tags')
  3. %p= t('featured_tags.hint_html')
  4. %hr.spacer/
  5. = simple_form_for @featured_tag, url: settings_featured_tags_path do |f|
  6. = render 'shared/error_messages', object: @featured_tag
  7. .fields-group
  8. = f.input :name, wrapper: :with_block_label, hint: safe_join([t('simple_form.hints.featured_tag.name'), safe_join(@recently_used_tags.map { |tag| link_to("##{tag.name}", settings_featured_tags_path(featured_tag: { name: tag.name }), method: :post) }, ', ')], ' ')
  9. .actions
  10. = f.button :button, t('featured_tags.add_new'), type: :submit
  11. %hr.spacer/
  12. - @featured_tags.each do |featured_tag|
  13. .directory__tag{ class: params[:tag] == featured_tag.name ? 'active' : nil }
  14. %div
  15. %h4
  16. = fa_icon 'hashtag'
  17. = featured_tag.name
  18. %small
  19. - if featured_tag.last_status_at.nil?
  20. = t('accounts.nothing_here')
  21. - else
  22. %time{ datetime: featured_tag.last_status_at.iso8601, title: l(featured_tag.last_status_at) }= l featured_tag.last_status_at
  23. = table_link_to 'trash', t('filters.index.delete'), settings_featured_tag_path(featured_tag), method: :delete, data: { confirm: t('admin.accounts.are_you_sure') }
  24. .trends__item__current= friendly_number_to_human featured_tag.statuses_count