Sha256: 1b46221d2eab3dd2c8ffa07d3c60c710de5847e6172f05637eebd778b6e023b6

Contents?: true

Size: 1.17 KB

Versions: 6

Compression:

Stored size: 1.17 KB

Contents

<div class="zoomed-picture-background">
  <%= image_tag alchemy.zoom_picture_path(
    id: @picture.id,
    name: @picture.urlname,
    format: @picture.suffix,
    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

6 entries across 6 versions & 1 rubygems

Version Path
alchemy_cms-3.3.3 app/views/alchemy/admin/pictures/show.html.erb
alchemy_cms-3.3.2 app/views/alchemy/admin/pictures/show.html.erb
alchemy_cms-3.3.1 app/views/alchemy/admin/pictures/show.html.erb
alchemy_cms-3.3.0 app/views/alchemy/admin/pictures/show.html.erb
alchemy_cms-3.3.0.rc2 app/views/alchemy/admin/pictures/show.html.erb
alchemy_cms-3.3.0.rc1 app/views/alchemy/admin/pictures/show.html.erb