Sha256: 5e72faee9deead2760bb516b11713245980e9d7440be69b74ecf155ef0ad587b
Contents?: true
Size: 502 Bytes
Versions: 2
Compression:
Stored size: 502 Bytes
Contents
<%= form_for(@author) do |f| %> <% if @author.errors.any? %> <div id="error_explanation"> <h2><%= pluralize(@author.errors.count, "error") %> prohibited this author from being saved:</h2> <ul> <% @author.errors.full_messages.each do |msg| %> <li><%= msg %></li> <% end %> </ul> </div> <% end %> <div class="field"> <%= f.label :name %><br /> <%= f.text_field :name %> </div> <div class="actions"> <%= f.submit %> </div> <% end %>
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
r_decorator-0.0.6 | spec/dummy/app/views/authors/_form.html.erb |
rails-services-0.1.5 | test/rails_app_v3/app/views/authors/_form.html.erb |