% content_for :main do %>
New Mapping
<%= form_for @mapping, :url=>"/admin/mapping", :method=>:post do |f| %>
Source URL:
<%= f.text_field :source_url %>
The URL that the user requests
Target URL:
<%= f.text_field :target_url %>
The URL for the page the user ends up seeing. For internal pages, begin the URL with a slash ("/"). For exteranl links, use the full URL, e.g. "http://www.dsc.net"
<%= f.hidden_field :is_asset %>
<%= kit_submit "Save" %> <%= icon_to "Cancel", "/admin/mapping" %>
<% end %>
<% end %>