%#
# @file
# Form to create a new map.
# Accessible from /maps/new. Still in use.
#%>
<%= form_for @map || Map.new, url: maps_url do |form|%>
Add Map
<%= form.text_field :name %>
<%= form.text_area :desc, class: "description", :rows => 5 %>
<%= form.select(:permission, options_for_select(['commons', 'public', 'private'])) %>
Topics and synapses you create newly on this map will be set by default to the permissions of your map.
<%= form.submit "Add Map", class: "add" %>
<% end %>