Skip to content

Instantly share code, notes, and snippets.

@devoutdesign
Created September 27, 2010 04:11
Show Gist options
  • Save devoutdesign/598590 to your computer and use it in GitHub Desktop.
Save devoutdesign/598590 to your computer and use it in GitHub Desktop.
<%= form_for(@chapter) do |f| %>
<% if @chapter.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@chapter.errors.count, "error") %> prohibited this chapter from being saved:</h2>
<ul>
<% @chapter.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :title %><br />
<%= f.text_field :title %>
</div>
<div class="field">
<%= f.label :display_rank %><br />
<%= f.text_field :display_rank %>
</div>
<div class="field">
<%= f.label :book %><br />
<%= f.text_field :book %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment