Displaying delete button for user's own upload
This commit is contained in:
parent
28519c1f30
commit
102ea7e67c
1 changed files with 15 additions and 14 deletions
|
|
@ -1,11 +1,11 @@
|
|||
// Button that reveals a dropdown/modal for moderation/reporting
|
||||
.button-group.small.align-center
|
||||
|
||||
|
||||
a.button.small.bordered.radius.alert[
|
||||
href=delete_screenshot_path(screenshot.id)
|
||||
onclick="return confirm('Really delete the screenshot?');"
|
||||
] #{fa_icon 'trash'} Delete
|
||||
- if screenshot_uploaded_by_current_user?(screenshot)
|
||||
a.button.small.bordered.radius.alert[
|
||||
href=delete_screenshot_path(screenshot.id)
|
||||
onclick="return confirm('Really delete the screenshot?');"
|
||||
] #{fa_icon 'trash'} Delete
|
||||
|
||||
/ a.button.small.bordered.radius.secondary[
|
||||
/ href='#'
|
||||
|
|
@ -16,16 +16,17 @@
|
|||
/ ] #{fa_icon 'star'} Make primary
|
||||
|
||||
- if not screenshot.approved
|
||||
a.button.small.success[
|
||||
href=approve_screenshot_path(screenshot.id)
|
||||
method='post'
|
||||
] Approve
|
||||
- if current_user && current_user.is_admin?
|
||||
a.button.small.success[
|
||||
href=approve_screenshot_path(screenshot.id)
|
||||
method='post'
|
||||
] Approve
|
||||
|
||||
- elsif screenshot.markedfordelete
|
||||
a.button.small.success[
|
||||
href=approve_screenshot_path(screenshot.id)
|
||||
method='post'
|
||||
] Keep
|
||||
/ - elsif screenshot.markedfordelete
|
||||
/ a.button.small.success[
|
||||
/ href=approve_screenshot_path(screenshot.id)
|
||||
/ method='post'
|
||||
/ ] Keep
|
||||
|
||||
|
||||
/ Display additional information to admins
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue