remains of fontawesome

This commit is contained in:
Christoph Haas 2025-06-08 16:34:16 +02:00
parent 03c20c1f23
commit 9cdf7b76fd
2 changed files with 7 additions and 7 deletions

View file

@ -70,23 +70,23 @@ h1 Your data
ul
- if can? :approve, Screenshot.new
li
=> fa_icon 'thumbs-up'
=> icon 'thumbs-up'
'approve uploaded screenshots
- if can? :destroy, Screenshot.new
li
=> fa_icon 'trash'
=> icon 'trash'
'delete screenshots
- if can? :hide, Screenshot.new
li
=> fa_icon 'eye-slash'
=> icon 'eye-closed'
'hide screenshots from the public
- if can? :unhide, Screenshot.new
li
=> fa_icon 'eye'
=> icon 'eye'
'restore (unhide) screenshots for the public
- if can? :view, Log
li
=> fa_icon 'book'
=> icon 'book'
'view logs
.cell.auto

View file

@ -8,7 +8,7 @@
.callout.warning
- if @invalid_images.any?
= fa_icon 'exclamation-circle 2x pull-left'
= icon 'circle-alert'
p These images were not accepted:
ul
@ -19,7 +19,7 @@
- if @valid_images.any?
= fa_icon 'check-circle 2x pull-left'
= icon 'circle-check'
p
' #{pluralize(@valid_images.length, 'screenshot')} received successfully.
' Please review the images and add a description for each image. Thanks.