diff --git a/app/views/packages/details.slim b/app/views/packages/details.slim index 88ee382..31eee19 100644 --- a/app/views/packages/details.slim +++ b/app/views/packages/details.slim @@ -11,22 +11,36 @@ .small-7.medium-7.cell / Left column contains images - = render(partial: 'packages/paginator', locals: {items: @screenshots}) + - if @screenshots.length > 0 + = render(partial: 'packages/paginator', locals: {items: @screenshots}) + .grid-x.grid-margin-x.medium-up-1.large-up-2 data-equalizer=true data-equalize-on="medium" + - @screenshots.all.each do |screenshot| + .cell.pkgcard data-equalizer-watch=true + a.black href =url_for(screenshot.simage_url(:large)) rel='fancybox-thumb' title=screenshot.caption data-fancybox='gallery' data-caption=screenshot_caption(screenshot) + .image + = small_img(screenshot, cls: '') + .text + = screenshot.caption + // Has the unmoderated screenshot been uploaded by the current user? + - if screenshot_uploaded_by_current_user?(screenshot) + .text + span.label.secondary + ' Uploaded by you + - unless screenshot.approved + ' (but not moderated yet) + // Is the user an admin? + // or does the screenshot belong to the user (determined by session cookie) + - if current_user && current_user.is_admin? + hr + .text + span.label.secondary + ' Status: + = screenshot.adminstatus - - if @screenshots.count > 0 - .grid-x.grid-margin-y.grid-margin-x.align-middle + = render(partial: 'admin_buttons', locals: {screenshot: screenshot}) + / - elsif user_signed_in? and screenshot.user == current_user + / = render(partial: 'user_dropdown', locals: {screenshot: screenshot}) - - @screenshots.each_with_index do |screenshot, idx| - .small-12.medium-6.cell - .margin-bottom-3 - = render(partial:'small_image', locals: {screenshot: screenshot}) - - // Has the unmoderated screenshot been uploaded by the current user? - - if screenshot_uploaded_by_current_user?(screenshot) - span.label.warning - | Uploaded by you - - unless screenshot.approved - | (but not moderated yet) // Second paginator at the bottom so the user does not have to scroll up again = render(partial: 'packages/paginator', locals: {items: @screenshots}) @@ -38,11 +52,6 @@ / tt / = screenshot.inspect - // Is the user an admin? - // TODO: fix dropdowns – do not enforce javascript - // or does the screenshot belong to the user (determined by session cookie) - / - elsif user_signed_in? and screenshot.user == current_user - / = render(partial: 'user_dropdown', locals: {screenshot: screenshot}) // or is the user not related to the screenshot and the screenshot is public?