= form_for @orga do |f|
  - if @orga.persisted?
    = hidden_field_tag :secret, params[:secret]

  - if @orga.errors.any?
    #flash_messages
      - @orga.errors.full_messages.each do |msg|
        %p.flash.alert= msg

  .field.kind
    = f.label :kind
    %span.radios
      - Kind.all.each do |kind|
        = f.radio_button :kind_id, kind.id
        = f.label "kind_id_#{kind.id}" do
          %em.fa{ class: "fa-#{kind.icon}" }
          = Kind.human_attribute_name "#{kind.name}"
  .field.name
    = f.label :name
    = f.text_field :name, required: true
  .field.description
    = f.label :description
    = f.text_area :description, rows: 25, class: :description
  .field.place_name
    = f.label :place_name
    = f.text_field :place_name
  .field.address
    .helper
      :markdown
        #{t '.address_helper'}
    = f.label :address
    = f.text_field :address
  .field.city
    = f.label :city
    = f.text_field :city, list: :cities
    %datalist#cities
      - Event.group(:city).order('count(city) desc').pluck(:city).each do |city|
        %option= city
  .field.region
    = f.label :region
    = f.collection_select :region_id, Region.all, :id, :name

  .field.url
    .helper
      :markdown
        #{t '.url_helper'}
    = f.label :url
    = f.url_field :url, placeholder: 'Ex: http://april.org'
  .field.diaspora
    = f.label :diaspora
    = f.url_field :diaspora
  .field.feed
    .helper
      :markdown
        #{t '.feed_helper'}
    = f.label :feed
    = f.url_field :feed, placeholder: 'Ex: http://april.org/index.rss'
  .field.contact
    .helper
      :markdown
        #{t '.contact_helper'}
    = f.label :contact
    = f.email_field :contact
  .field.submitter
    .helper
      :markdown
        #{t '.submitter_helper'}
    = f.label :submitter
    = f.email_field :submitter

  .field.tags
    .helper
      :markdown
        #{t '.tags_helper'}
    = f.label :tags
    = f.text_field :tags

  .field.active
    = f.label :active
    = f.check_box :active

  .actions
    = f.button do
      %em.fa.fa-check
      = t '.save'