Skip to content

Instantly share code, notes, and snippets.

@kawahiro311
Created August 23, 2014 11:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kawahiro311/7d046a0910f085710dfc to your computer and use it in GitHub Desktop.
Save kawahiro311/7d046a0910f085710dfc to your computer and use it in GitHub Desktop.
RailsでTwitterBootstrapを使ったエラーメッセージ
<% if errors.any? %>
<div class="alert alert-danger" role="alert">
<ul>
<% errors.full_messages.each do |message| %>
<li><%= message %></li>
<% end %>
</ul>
</div>
<% end %>
<%= form_for(@user) do |f| %>
<%= render partial: 'shared/errors', object: @user.errors %>
...
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment