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.
19 lines
517 B
19 lines
517 B
= form_for @organization_status do |f|
|
|
- if @organization_status.errors.any?
|
|
#error_explanation
|
|
%h2= "#{pluralize(@organization_status.errors.count, "error")} prohibited this organization_status from being saved:"
|
|
%ul
|
|
- @organization_status.errors.full_messages.each do |msg|
|
|
%li= msg
|
|
|
|
.field
|
|
= f.label :name
|
|
= f.text_field :name
|
|
.field
|
|
= f.label :slug
|
|
= f.text_field :slug
|
|
.field
|
|
= f.label :info
|
|
= f.text_field :info
|
|
.actions
|
|
= f.submit 'Save'
|
|
|