photomix/app/views/albums/new.html.erb

9 lines
381 B
Plaintext
Raw Normal View History

2012-07-30 21:08:48 +02:00
<%= form_for @album, :html => {:class => 'form-horizontal'} do |f| %>
<legend><%= t('activerecord.actions.new', :model => I18n.t('activerecord.models.album.one')) %></legend>
<%= f.error_messages %>
<%= render :partial => "form", :object => f %>
<div class="form-actions">
<%= f.button "Create", :class => 'btn btn-primary btn-large' %>
</div>
2009-05-22 21:04:41 +02:00
<% end %>