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.

10 lines
536 B

  1. .announcements-list__item
  2. = link_to edit_admin_warning_preset_path(warning_preset), class: 'announcements-list__item__title' do
  3. = warning_preset.title.presence || truncate(warning_preset.text)
  4. .announcements-list__item__action-bar
  5. .announcements-list__item__meta
  6. = truncate(warning_preset.text)
  7. %div
  8. = table_link_to 'trash', t('admin.warning_presets.delete'), admin_warning_preset_path(warning_preset), method: :delete, data: { confirm: t('admin.accounts.are_you_sure') } if can?(:destroy, warning_preset)