You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
476 B
16 lines
476 B
= form_for @conference_admin do |f|
|
|
- if @conference_admin.errors.any?
|
|
#error_explanation
|
|
%h2= "#{pluralize(@conference_admin.errors.count, "error")} prohibited this conference_admin from being saved:"
|
|
%ul
|
|
- @conference_admin.errors.full_messages.each do |msg|
|
|
%li= msg
|
|
|
|
.field
|
|
= f.label :conference_id
|
|
= f.number_field :conference_id
|
|
.field
|
|
= f.label :user_id
|
|
= f.number_field :user_id
|
|
.actions
|
|
= f.submit 'Save'
|
|
|