Sha256: 43f6981948988a4a4e6fa1a47ceca0df2e8da22775af55bfb1b243b82dd5fb70

Contents?: true

Size: 1.18 KB

Versions: 4

Compression:

Stored size: 1.18 KB

Contents

<div class="zoomed-picture-background">
  <%= image_tag alchemy.zoom_picture_path(
    id: @picture.id,
    name: @picture.urlname,
    format: @picture.image_file_format,
    sh: @picture.security_token
  ) %>
</div>

<div class="picture-overlay-navigation">
  <% if @previous %>
    <%= link_to alchemy.admin_picture_path(
        id: @previous,
        q: params[:q],
        page: params[:page],
        tagged_with: params[:tagged_with],
        size: params[:size],
        filter: params[:filter]
      ),
      class: "previous-picture",
      remote: true do %>
      <span class="icon-angle-left"></span>
    <% end %>
  <% end %>
  <% if @next %>
    <%= link_to alchemy.admin_picture_path(
        id: @next,
        q: params[:q],
        page: params[:page],
        tagged_with: params[:tagged_with],
        size: params[:size],
        filter: params[:filter]
      ),
      class: "next-picture",
      remote: true do %>
      <span class="icon-angle-right"></span>
    <% end %>
  <% end %>
</div>

<div class="picture-details-overlay">
  <%= render 'form' %>
  <%= render 'infos' %>
</div>

<div class="picture-overlay-handle">
  <span class="icon-angle-double-right"></span>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
alchemy_cms-3.4.2 app/views/alchemy/admin/pictures/show.html.erb
alchemy_cms-3.4.1 app/views/alchemy/admin/pictures/show.html.erb
alchemy_cms-3.4.0 app/views/alchemy/admin/pictures/show.html.erb
alchemy_cms-3.4.0.rc1 app/views/alchemy/admin/pictures/show.html.erb