photomix/app/views/albums/edit.html.erb
Espen Antonsen 14169b1770 block rails3
2010-09-17 18:52:59 +02:00

18 lines
406 B
Plaintext

<h1>Edit Album</h1>
<%= form_for @album do |f| %>
<%= f.error_messages %>
<%= render :partial => "form", :object => f %>
<%= f.submit "Update" %>
<% end %>
<% content_for :action_links do %>
<% if has_role?("admin") %>
<%= link_to("Delete album", { :action => "destroy", :id => @album },
:confirm => "Are you sure you want to delete this album?",
:method => :delete) %>
<% end %>
<% end %>