'

<%= I18n.t("flights.new.new_flight") %>

' <% form_for(@flight) do |f| %> <%= f.error_messages %>

<%= f.label I18n.t("flights.new.name", :default => "Name") %>
<%= f.text_field :name %>

<%= f.label I18n.t("flights.new.capacity", :default => "Capacity") %>
<%= f.text_field :capacity %>

<%= f.label I18n.t("flights.new.duration", :default => "Duration") %>
<%= f.text_field :duration %>

<%= f.label :from_id, I18n.t("flights.new.from", :default => "From") %>
<%= f.select :from_id, @airport_options %>

<%= f.label :to_id, I18n.t("flights.new.to") %>
<%= f.select :to_id, @airport_options %>

<%= f.submit I18n.t("flights.new.create", :default => 'Create') %>

<% end %> <%= link_to I18n.t("flights.new.back", :default => 'Back'), flights_path %>