forked from bofh/fetsite
28 lines
486 B
Plaintext
28 lines
486 B
Plaintext
<p id="notice"><%= notice %></p>
|
|
|
|
<p>
|
|
<b>Name:</b>
|
|
<%= @gallery.name %>
|
|
</p>
|
|
|
|
<p>
|
|
<b>Desc:</b>
|
|
<%= @gallery.desc %>
|
|
</p>
|
|
|
|
<p>
|
|
<b>Datum:</b>
|
|
<%= @gallery.datum %>
|
|
</p>
|
|
<% @gallery.fotos.each do |f| %>
|
|
<%= link_to image_tag(f.datei.big_thumb.url,{:class=>"img-polaroid"}) , gallery_foto_path(@gallery,f) %>
|
|
|
|
|
|
|
|
<% end %>
|
|
|
|
|
|
<%= link_to 'NewFoto' , new_gallery_foto_path(@gallery) %> |
|
|
<%= link_to 'Edit', edit_gallery_path(@gallery) %> |
|
|
<%= link_to 'Back', galleries_path %>
|