<%= form_for(@user_certification) do |f| %> <% if @user_certification.errors.any? %>

<%= pluralize(@user_certification.errors.count, "error") %> prohibited this user_certification from being saved:

<% end %>
<%= f.label :user_id %>
<%= f.number_field :user_id %>
<%= f.label :certification_id %>
<%= f.number_field :certification_id %>
<%= f.submit %>
<% end %>