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.
18 lines
427 B
18 lines
427 B
= form_for(district) do |f|
|
|
- if district.errors.any?
|
|
#error_explanation
|
|
%h2
|
|
= pluralize(district.errors.count, "error")
|
|
prohibited this district from being saved:
|
|
%ul
|
|
- district.errors.full_messages.each do |message|
|
|
%li= message
|
|
.field
|
|
= f.label :name
|
|
= f.text_field :name
|
|
.field
|
|
= f.label :state_id
|
|
= f.number_field :state_id
|
|
.actions
|
|
= f.submit
|