<%= 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", :default => "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 %>