Sha256: 184941d60a476a5296cfb53678be7ff45cc1fdbb83df61f3c11f34bb9fd6f5e6

Contents?: true

Size: 451 Bytes

Versions: 2

Compression:

Stored size: 451 Bytes

Contents

<% title "Image: #{@image.image}" %>

<% content_for :heading do %>
  <h1>Image</h1>
<% end %>

<table class="table">
  <tbody>
    <tr>
      <td>Filename:</td>
      <td><%= @image.image %></td>
      <td rowspan="10"><%= image_tag @image.image, width: 300 %></td>
    </tr>

    <% @image.exif.each do |key, value| %>
      <tr>
        <td><%= key.to_s.titleize %>:</td>
        <td><%= value %></td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
plotline-0.1.1 app/views/plotline/images/show.html.erb
plotline-0.1.0 app/views/plotline/images/show.html.erb