Sha256: c53fdc366428dd0f4097ccfcbe9acba9b42cb37ee392fde531ded553edfa45d9

Contents?: true

Size: 512 Bytes

Versions: 1

Compression:

Stored size: 512 Bytes

Contents

.container
  .row
    .page-header
      %h1= @region.new_record? ? "New Region" : "Editing '#{@region}'"
  .row

    = form_for(@region) do |f|
      =# f.error_messages
      .form-group
        = f.label :name
        = f.text_field :name
      .form-group
        = f.label :abbr
        = f.text_field :abbr
      .form-group
        = f.label :slug
        = f.text_field :slug
      .form-group
        = f.label :nation_id
        = f.select :nation_id, @nations

      .forms-buttons
        = f.submit

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
geopolitical-0.8.0 app/views/geopolitical/regions/_form.html.haml